Skip to content

Commit

Permalink
github action to create required hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-tux committed May 24, 2022
1 parent 5a015c0 commit c4ce0b0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/worfklows/hash.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Generate Hashes on Release
on:
release:
types: [published]

jobs:
hash:
runs-on: ubuntu-latest
steps:
- uses: MCJack123/ghaction-generate-release-hashes@v1
with:
hash-type: sha256
file-name: hashes.txt
- uses: actions/upload-artifact@v2
with:
name: Asset Hashes
path: hashes.txt

0 comments on commit c4ce0b0

Please sign in to comment.