Manual Trigger #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manual Trigger | |
on: | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} | |
# "GITHUB_TOKEN" is a secret automatically provided to the workflow | |
# for your own token, the name cannot start with "GITHUB_" | |
steps: | |
# Include submodule on checkout | |
- name: Clone Project | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Create Latest Changelog | |
uses: kemayo/actions-recent-changelog@v1 | |
with: | |
input: CHANGELOG.md | |
output: CHANGELOG-LATEST.md | |
- name: Package and Release | |
uses: BigWigsMods/packager@v2 | |
with: | |
args: -d -g retail |