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 8959c16 commit c39e500Copy full SHA for c39e500
1 file changed
.github/workflows/build-worker-bundles.yml
@@ -33,10 +33,22 @@ jobs:
33
with:
34
skip-decompress: true
35
merge-multiple: true
36
+
37
+ - name: Create manifest.json
38
+ run: |
39
+ set -euo pipefail
40
+ manifest="{}"
41
+ for f in worker*.tar.xz; do
42
+ sum=$(sha256sum "$f" | awk '{print $1}')
43
+ manifest=$(echo "$manifest" | jq ".files.[\"$f\"].sha256 = \"$sum\"")
44
+ done
45
+ echo "$manifest" > manifest.json
46
47
- uses: softprops/action-gh-release@v3
48
49
tag_name: dev+${{ github.sha }}
50
target_commitish: ${{ github.sha }}
51
prerelease: true
52
files: |
53
worker-*.tar.xz
54
+ manifest.json
0 commit comments