From 86d5e636df8cf2d1e68a9edbab711c85651755fb Mon Sep 17 00:00:00 2001 From: Prateek Sunal Date: Fri, 29 Mar 2024 01:21:52 +0530 Subject: [PATCH] fix: generated sha256 sums for windows and macos --- .github/workflows/auth-release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/auth-release.yml b/.github/workflows/auth-release.yml index 1203bc4a3..1ef967f44 100644 --- a/.github/workflows/auth-release.yml +++ b/.github/workflows/auth-release.yml @@ -173,6 +173,9 @@ jobs: - name: Zip Windows EXE and DLLs run: tar.exe -a -c -f artifacts/ente-${{ github.ref_name }}-windows.zip ente-${{ github.ref_name }}-windows + - name: Generate checksums + run: sha256sum artifacts/ente-* > artifacts/sha256sum-windows + - name: Create a draft GitHub release uses: ncipollo/release-action@v1 with: @@ -267,6 +270,9 @@ jobs: APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} + - name: Generate checksums + run: sha256sum artifacts/ente-* > artifacts/sha256sum-macos + - name: Create a draft GitHub release uses: ncipollo/release-action@v1 with: