We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dfd88b commit 03ad841Copy full SHA for 03ad841
1 file changed
.github/workflows/release.yml
@@ -199,9 +199,19 @@ jobs:
199
with:
200
merge-multiple: true
201
202
+ - name: Generate checksums
203
+ run: |
204
+ # Generate SHA256 checksums for all archives
205
+ sha256sum *.zip *.tar.gz > croc_${{ github.event.release.name }}_checksums.txt
206
+
207
+ # Display the checksums file for verification
208
+ echo "Generated checksums:"
209
+ cat croc_${{ github.event.release.name }}_checksums.txt
210
211
- name: Upload release assets
212
uses: softprops/action-gh-release@v2
213
214
files: |
215
*.zip
- *.tar.gz
216
+ *.tar.gz
217
+ *_checksums.txt
0 commit comments