fix: Fix release Github Actions not working (and being half done) (#3) #1
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: Publish Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
changelog: | |
name: Generate Changelog & Publish Release | |
runs-on: ubuntu-latest | |
outputs: | |
tag: ${{ steps.changelog.outputs.tag }} | |
skipped: ${{ steps.changelog.outputs.skipped }} | |
clean_changelog: ${{ steps.changelog.outputs.clean_changelog }} | |
changelog: ${{ steps.changelog.outputs.changelog }} | |
release_id: ${{ steps.release.outputs.id }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.PRIVATE_TOKEN }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- run: | | |
npm install [email protected] | |
npm install [email protected] | |
- name: Create changelog | |
id: changelog | |
uses: TriPSs/[email protected] | |
with: | |
github-token: ${{ secrets.PRIVATE_TOKEN }} | |
git-user-name: 'WynntilsBot' | |
git-user-email: '[email protected]' | |
skip-version-file: true | |
skip-git-pull: true | |
pre-release: false | |
release-count: 5 | |
- name: Generate the output files | |
run: | | |
chmod +x ./zip.sh | |
./zip.sh | |
- name: Upload output | |
uses: actions/upload-artifact@v4 | |
with: | |
name: output | |
path: | | |
**/output/libs/*.zip | |
if-no-files-found: error | |
overwrite: true | |
- name: Create release | |
if: ${{ steps.changelog.outputs.skipped != 'true' }} | |
id: release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: ${{ steps.changelog.outputs.tag }} | |
body: ${{ steps.changelog.outputs.changelog }} | |
draft: false | |
prerelease: false | |
files: | | |
**/output/libs/*.zip |