Skip to content

Commit

Permalink
allow update release
Browse files Browse the repository at this point in the history
  • Loading branch information
archiewood committed Jul 29, 2024
1 parent 451aa35 commit be028e3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,15 @@ jobs:
else
zip -r evidence-${{ matrix.os }}-${{ matrix.arch }}-node${{ matrix.node }}.zip . -x "*.git*"
fi
- name: Upload to GH release
uses: ncipollo/release-action@v1
uses: softprops/action-gh-release@v1
with:
artifacts: evidence-${{ matrix.os }}-${{ matrix.arch }}-node${{ matrix.node }}.zip
files: evidence-${{ matrix.os }}-${{ matrix.arch }}-node${{ matrix.node }}.zip
token: ${{ secrets.GH_ACTIONS_RELEASE_TOKEN }}
tag: ${{ github.ref }}
name: Release ${{ github.ref }}
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Release for ${{ matrix.os }} ${{ matrix.arch }} with Node.js ${{ matrix.node }}
draft: false
prerelease: false

0 comments on commit be028e3

Please sign in to comment.