From 237906c75754f3ab3a8801eff0d059d5d33bc6cf Mon Sep 17 00:00:00 2001 From: Katherine Kiefer Date: Tue, 11 Jun 2024 16:02:43 +1000 Subject: [PATCH] eeeee --- .github/workflows/release.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e3fc24..5e5fbfa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,10 +60,14 @@ jobs: if: matrix.os == 'ubuntu-20.04' - name: Generate checksum for release files - uses: jmgilman/actions-generate-checksum@v1 + id: checksum + uses: Huy-Ngo/gha-sha@v1.1.0 with: - patterns: "target/${{ matrix.target_name }}/release/${{ matrix.artifact_name }}" - output: ${{ matrix.artifact_name }}.sha256 + glob: "target/${{ matrix.target_name }}/release/${{ matrix.artifact_name }}" + + - name: Write checksum to a file + run: | + echo ${{ steps.checksum.outputs.sha256-checksum.value }} >> ${{ matrix.artifact_name }}.sha256 - name: Upload checksum files to release uses: svenstaro/upload-release-action@v1-release