From e75deb282cfbbfc2ac2ec4ddd4983338989e7cbb Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Mon, 30 Mar 2026 15:33:24 +0200 Subject: [PATCH] use correct cmd for computing sha sum --- .github/workflows/mac-dmg-x64.yml | 2 +- .github/workflows/mac-dmg.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mac-dmg-x64.yml b/.github/workflows/mac-dmg-x64.yml index 6c42b43a0..8ec952df2 100644 --- a/.github/workflows/mac-dmg-x64.yml +++ b/.github/workflows/mac-dmg-x64.yml @@ -268,7 +268,7 @@ jobs: xcode-path: '/Applications/Xcode_16.app' - id: sha256sum run: | - read -ra CMD_OUTPUT < <(sha -a256 Cryptomator-*.dmg) + read -ra CMD_OUTPUT < <(shasum -a256 Cryptomator-*.dmg) echo "value=${CMD_OUTPUT[0]}" >> $GITHUB_OUTPUT - name: Add possible alpha/beta tags to installer name run: mv Cryptomator-*.dmg Cryptomator-${{ needs.get-version.outputs.semVerStr }}-${{ matrix.output-suffix }}.dmg diff --git a/.github/workflows/mac-dmg.yml b/.github/workflows/mac-dmg.yml index ca9c13199..36951ceae 100644 --- a/.github/workflows/mac-dmg.yml +++ b/.github/workflows/mac-dmg.yml @@ -267,7 +267,7 @@ jobs: xcode-path: '/Applications/Xcode_16.app' - id: sha256sum run: | - read -ra CMD_OUTPUT < <(sha -a256 Cryptomator-*.dmg) + read -ra CMD_OUTPUT < <(shasum -a256 Cryptomator-*.dmg) echo "value=${CMD_OUTPUT[0]}" >> $GITHUB_OUTPUT - name: Add possible alpha/beta tags to installer name run: mv Cryptomator-*.dmg Cryptomator-${{ needs.get-version.outputs.semVerStr }}-${{ matrix.output-suffix }}.dmg