Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix release Github Actions not working (and being half done) #3

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 29 additions & 10 deletions .github/workflows/pre-release.yml → .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Pre Release
name: Publish Release

on:
push:
Expand All @@ -7,7 +7,7 @@ on:

jobs:
changelog:
name: Generate Changelog
name: Generate Changelog & Publish Release
runs-on: ubuntu-latest
outputs:
tag: ${{ steps.changelog.outputs.tag }}
Expand All @@ -16,33 +16,52 @@ jobs:
changelog: ${{ steps.changelog.outputs.changelog }}
release_id: ${{ steps.release.outputs.id }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.PRIVATE_TOKEN }}

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
- run: npm install conventional-changelog-conventionalcommits
- run: |
npm install conventional-changelog-conventionalcommits@7.0.2
npm install conventional-recommended-bump@9.0.0

- name: Create changelog
id: changelog
uses: TriPSs/conventional-changelog-action@v3.17.0
uses: TriPSs/conventional-changelog-action@v5.2.1
with:
github-token: ${{ secrets.PRIVATE_TOKEN }}
git-user-name: 'WynntilsBot'
git-user-email: 'admin@wynntils.com'
skip-version-file: true
skip-git-pull: true
pre-release: 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@v1
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.changelog }}
draft: true
prerelease: true
draft: false
prerelease: false
files: |
**/output/libs/*.zip
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ Wynncraft 2.0
node_modules
package-lock.json
package.json

.idea/