Skip to content

Commit

Permalink
ci: adding checksums to the releases
Browse files Browse the repository at this point in the history
  • Loading branch information
benfdking committed Feb 29, 2024
1 parent 242d5cd commit db27279
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,13 @@ jobs:
fi
cd -
- name: Generate SHA-256
run: shasum -a 256 ${{ matrix.platform.name }}
- name: Generate SHA-256 and Save to File
run: shasum -a 256 ${{ matrix.platform.name }} > ${{ matrix.platform.name }}.sha256

- name: Publish GitHub release
uses: softprops/action-gh-release@v1
with:
draft: true
files: "sqruff-*"
files: |
sqruff-*
*.sha256

0 comments on commit db27279

Please sign in to comment.