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 8a6eeec commit e3b151dCopy full SHA for e3b151d
.github/workflows/ci.yml
@@ -88,4 +88,5 @@ jobs:
88
name: bundle
89
path: |
90
output/builtin-actors.car
91
+ output/builtin-actors.car.sha256sum
92
output/upload.json
upload-bundle.sh
@@ -3,5 +3,9 @@
3
set -e
4
5
bundle=output/builtin-actors.car
6
+
7
+shasum -a 256 $bundle > $bundle.sha256sum
8
+cat $bundle.sha256sum
9
10
curl -k -X POST -F "data=@${bundle};type=application/octet-stream;filename=\"${bundle}\"" -H "Authorization: Bearer $ESTUARY_TOKEN" -H "Content-Type: multipart/form-data" https://shuttle-4.estuary.tech/content/add > output/upload.json
11
cat output/upload.json
0 commit comments