Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create checksum.txt for releases | |
on: | |
release: | |
types: [created] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run checksum action | |
uses: thewh1teagle/checksum@v1 | |
with: | |
patterns: | | |
*.zip | |
*.tar.gz | |
algorithm: sha256 | |
env: | |
# You must enable write permission in github.com/user/repo/settings/actions -> Workflow permissions -> Read and write permissions | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |