diff --git a/.github/workflows/updater_ffmpeg-static.sh b/.github/workflows/updater_ffmpeg-static.sh index 3629c36..faab63e 100644 --- a/.github/workflows/updater_ffmpeg-static.sh +++ b/.github/workflows/updater_ffmpeg-static.sh @@ -23,8 +23,7 @@ arm64_sha_last=$(curl --silent "$arm64_url" | sha256sum) echo "PROCEED=false" >> $GITHUB_ENV # Proceed only if the retrieved version is greater than the current one -#if [ "$amd64_sha_current" == "$amd64_sha_last" ] && [ "$arm64_sha_current" == "$arm64_sha_last" ] -if true +if [ "$amd64_sha_current" == "$amd64_sha_last" ] && [ "$arm64_sha_current" == "$amd64_sha_last" ] then echo "::warning ::No new version available" exit 0