Skip to content

Commit

Permalink
fix: add checksum
Browse files Browse the repository at this point in the history
Signed-off-by: Alexy Mantha <alexy@mantha.dev>
  • Loading branch information
alexymantha committed Dec 20, 2023
1 parent 6d9a2c7 commit 38fbab8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,13 @@ jobs:
uses: actions/download-artifact@v4
with:
name: extension.tar.gz
- name: Generate checksum
uses: jmgilman/actions-generate-checksum@v1
with:
patterns: extension.tar.gz
- name: Upload Release Artifact
if: ${{ steps.release-please.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${{ steps.release-please.outputs.tag_name }} ./extension.tar.gz
run: gh release upload ${{ steps.release-please.outputs.tag_name }} ./extension.tar.gz ./checksum.txt

0 comments on commit 38fbab8

Please sign in to comment.