From ba314c0c84314b10200d0aceff626837b6d0bb68 Mon Sep 17 00:00:00 2001 From: meanmail Date: Wed, 20 Sep 2023 13:21:34 +0400 Subject: [PATCH] Update CI: fix 4 --- .github/workflows/actions/build/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions/build/action.yml b/.github/workflows/actions/build/action.yml index ed59608..7a57382 100644 --- a/.github/workflows/actions/build/action.yml +++ b/.github/workflows/actions/build/action.yml @@ -37,7 +37,7 @@ runs: password: ${{ inputs.password }} - if: ${{ inputs.add_hash }} run: | - hash=$(find ${{ inputs.path }} -type f -print0 | sort -z | xargs -0 sha2sum | sha2sum) + hash=$(find ${{ inputs.path }} -type f -print0 | sort -z | xargs -0 sha1sum | sha1sum) echo "hash=-${hash::9}" >> "$GITHUB_ENV" shell: bash - if: ${{ !inputs.add_hash }}