diff --git a/.github/workflows/release_archives.yml b/.github/workflows/release_archives.yml index 25a1909920..5e4beb1f2c 100644 --- a/.github/workflows/release_archives.yml +++ b/.github/workflows/release_archives.yml @@ -63,7 +63,7 @@ jobs: version=`basename ${{github.ref_name}}` archive="${{github.workspace}}/b2-${version}.${{matrix.format}}" ${{matrix.command}} "${archive}" "b2-${version}" - sha256sum "${archive}" > "${archive}.sha256sum.txt" + sha256sum -b "${archive}" > "${archive}.sha256sum.txt" - name: "Cleanup" run: | @@ -74,7 +74,7 @@ jobs: - name: "Upload" uses: actions/upload-artifact@v3 with: - name: archives + name: archives-${{github.run_id}} path: "${{github.workspace}}/b2-*" - name: "Publish"