From d9e00ce9d5cec67448b08120d2d750734d1c1331 Mon Sep 17 00:00:00 2001 From: Timothy Baldridge Date: Wed, 4 Dec 2024 10:15:26 -0700 Subject: [PATCH] Update release.yaml --- .github/workflows/release.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4f63dd8d..38e2f997 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -25,7 +25,7 @@ jobs: - name: Calculate Version from xxHash3 id: calculate_version run: | - version_hash=$(python -c "import xxhash; print(xxhash.xxh3_64_hexdigest(open('./minimal_hashes.zip', 'rb').read()))").read()))") + version_hash=$(python -c "import xxhash; print(xxhash.xxh3_64_hexdigest(open('./minimal_hashes.zip', 'rb').read()))") echo "Calculated version hash: $version_hash" echo "::set-output name=version::$version_hash" @@ -33,6 +33,7 @@ jobs: run: | git tag "v${{ steps.calculate_version.outputs.version }}" git push origin --tags + - name: Create GitHub Release id: create_release uses: actions/create-release@v1 @@ -53,6 +54,3 @@ jobs: asset_path: ./minimal_hashes.zip asset_name: minimal_hashes.zip asset_content_type: application/zip - - -