Skip to content

Commit

Permalink
fix: wrong job classifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Morazzer committed Sep 14, 2024
1 parent 6b5814e commit c0a866f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
run: |
tag=${{ github.event.ref }}
version=${{ steps.version.outputs.version }}
body=$(cat CHANGELOG.md)
gh release create --draft "$tag" --title "v$tag" --notes "$body"
gh release create --draft "v$version" --title "v$version" --notes "$body"
- name: Upload artifact
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
run: |
tag=${{ github.event.ref }}
version=${{ needs.version.outputs.version }}
gh release upload "$tag" "build/libs/entites-$version.jar"
version=${{ steps.version.outputs.version }}
gh release upload "v$version" "build/libs/entities-$version.jar"

0 comments on commit c0a866f

Please sign in to comment.