Fix Docker CI (#1418)

This commit is contained in:
Chevdor
2022-06-29 18:03:44 +02:00
committed by GitHub
parent ee49f744dd
commit d99ab3f82a
2 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -32,6 +32,7 @@ jobs:
echo "Prerelease: ${{ github.event.release.prerelease }}"
echo "Assets: ${{ github.event.release.assets }}"
mkdir -p tmp; cd tmp
for f in $BINARY $BINARY.asc $BINARY.sha256; do
URL="https://github.com/${{ github.event.repository.full_name }}/releases/download/${{ github.event.release.tag_name }}/$f"
echo " - Fetching $f from $URL"
@@ -42,7 +43,7 @@ jobs:
- name: Check files
run: |
ls -al *collator*
ls -al *$BINARY*
shasum -a 256 -c $BINARY.sha256
sha_result=$?