Skip to content

Commit c4ce0b0

Browse files
committed
github action to create required hashes
1 parent 5a015c0 commit c4ce0b0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/worfklows/hash.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Generate Hashes on Release
2+
on:
3+
release:
4+
types: [published]
5+
6+
jobs:
7+
hash:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: MCJack123/ghaction-generate-release-hashes@v1
11+
with:
12+
hash-type: sha256
13+
file-name: hashes.txt
14+
- uses: actions/upload-artifact@v2
15+
with:
16+
name: Asset Hashes
17+
path: hashes.txt

0 commit comments

Comments
 (0)