We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a84675 commit 675f82cCopy full SHA for 675f82c
.github/workflows/proof-hash.yml
@@ -0,0 +1,34 @@
1
+name: Proof Bundle Hashes
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - 'proofs/**'
7
+ - 'tools/hash_bundle.py'
8
9
+jobs:
10
+ hash:
11
+ name: Generate and Upload SHA256SUMS
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 1
18
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v5
21
22
+ python-version: '3.x'
23
24
+ - name: Run proof hasher
25
+ run: |
26
+ python tools/hash_bundle.py
27
28
+ - name: Upload SHA256SUMS.txt artifacts
29
+ uses: actions/upload-artifact@v4
30
31
+ name: proof-hashes
32
+ path: |
33
+ proofs/**/SHA256SUMS.txt
34
+ if-no-files-found: ignore
0 commit comments