Skip to content

Commit

Permalink
ci: replace releases action
Browse files Browse the repository at this point in the history
  • Loading branch information
jjliggett committed Mar 16, 2024
1 parent 1a50e07 commit e25da33
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -354,12 +354,15 @@ jobs:
if: ${{ github.ref == 'refs/heads/root' && env.VERSION != env.PREVIOUS_COMMIT_VERSION }}

- name: Create GitHub release
uses: marvinpinto/action-automatic-releases@919008cf3f741b179569b7a6fb4d8860689ab7f0 # v1.2.1
uses: softprops/action-gh-release@9d7c94cfd0a1f3ed45544c887983e9fa900f0564 # v2.0.4
if: ${{ github.ref == 'refs/heads/root' && env.VERSION != env.PREVIOUS_COMMIT_VERSION }}
with:
repo_token: "${{ secrets.GH_PUBLISH_TOKEN }}"
automatic_release_tag: v${{ env.VERSION }}
token: "${{ secrets.GH_PUBLISH_TOKEN }}"
draft: false
prerelease: false
tag_name: v${{ env.VERSION }}
generate_release_notes: true
make_latest: true
files: |
jjversion-${{ env.VERSION }}-linux-x64.zip
jjversion-${{ env.VERSION }}-linux-arm64.zip
Expand Down

0 comments on commit e25da33

Please sign in to comment.