mirror of
https://github.com/YunoHost-Apps/immich_ynh.git
synced 2024-09-03 20:36:24 +02:00
Update updater_ffmpeg-static.sh
This commit is contained in:
parent
8acc1928b1
commit
51fb262fe0
1 changed files with 7 additions and 7 deletions
14
.github/workflows/updater_ffmpeg-static.sh
vendored
14
.github/workflows/updater_ffmpeg-static.sh
vendored
|
@ -18,12 +18,6 @@ amd64_sha_last=$(curl --silent "$amd64_url" | sha256sum)
|
||||||
arm64_url=$(cat manifest.toml | tomlq -j '.resources.sources."ffmpeg-static".arm64.url')
|
arm64_url=$(cat manifest.toml | tomlq -j '.resources.sources."ffmpeg-static".arm64.url')
|
||||||
arm64_sha_current=$(cat manifest.toml | tomlq -j '.resources.sources."ffmpeg-static".arm64.sha256')
|
arm64_sha_current=$(cat manifest.toml | tomlq -j '.resources.sources."ffmpeg-static".arm64.sha256')
|
||||||
arm64_sha_last=$(curl --silent "$arm64_url" | sha256sum)
|
arm64_sha_last=$(curl --silent "$arm64_url" | sha256sum)
|
||||||
|
|
||||||
# Setting up the environment variables
|
|
||||||
echo "Current version: $version_current"
|
|
||||||
echo "Latest version: $version_next"
|
|
||||||
echo "VERSION=$version_next" >> $GITHUB_ENV
|
|
||||||
echo "REPO=$repo" >> $GITHUB_ENV
|
|
||||||
# For the time being, let's assume the script will fail
|
# For the time being, let's assume the script will fail
|
||||||
echo "PROCEED=false" >> $GITHUB_ENV
|
echo "PROCEED=false" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
@ -33,11 +27,17 @@ then
|
||||||
echo "::warning ::No new version available"
|
echo "::warning ::No new version available"
|
||||||
exit 0
|
exit 0
|
||||||
# Proceed only if a PR for this new version does not already exist
|
# Proceed only if a PR for this new version does not already exist
|
||||||
elif git ls-remote -q --exit-code --heads https://github.com/$GITHUB_REPOSITORY.git ci-auto-update-v$version_next ; then
|
elif git ls-remote -q --exit-code --heads https://github.com/$GITHUB_REPOSITORY.git ci-auto-update-v${version_next/~/-}
|
||||||
echo "::warning ::A branch already exists for this update"
|
echo "::warning ::A branch already exists for this update"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Setting up the environment variables
|
||||||
|
echo "Current version: $version_current"
|
||||||
|
echo "Latest version: $version_next"
|
||||||
|
echo "VERSION=${version_next/~/-}" >> $GITHUB_ENV
|
||||||
|
echo "REPO=$repo" >> $GITHUB_ENV
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# GENERIC FINALIZATION
|
# GENERIC FINALIZATION
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Reference in a new issue