mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-10 20:50:29 +01:00
125daf9cdb
1. Creates a publishPackages function in tools/release/release_utils.sh 2. Uses the publishPackages function in publish_release workflow Fixes issue 18138 Signed-off-by: Nagesh Bansal <nageshbansal59@gmail.com> Co-authored-by: Wang Yan <wangyan@vmware.com>
103 lines
3.0 KiB
Bash
103 lines
3.0 KiB
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
function getAssets {
|
|
local bucket=$1
|
|
local branch=$2
|
|
local offlinePackage=$3
|
|
local onlinePackage=$4
|
|
local prerelease=$5
|
|
local assetsPath=$6
|
|
mkdir $assetsPath && pushd $assetsPath
|
|
gsutil cp gs://$bucket/$branch/$offlinePackage .
|
|
gsutil cp gs://$bucket/$branch/$offlinePackage.asc .
|
|
md5sum $offlinePackage > md5sum
|
|
md5sum $offlinePackage.asc >> md5sum
|
|
# Pre-release does not handle online installer packages
|
|
if [ $prerelease = "false" ]
|
|
then
|
|
gsutil cp gs://$bucket/$branch/$onlinePackage .
|
|
gsutil cp gs://$bucket/$branch/$onlinePackage.asc .
|
|
md5sum $onlinePackage >> md5sum
|
|
md5sum $onlinePackage.asc >> md5sum
|
|
fi
|
|
popd
|
|
}
|
|
|
|
function generateReleaseNotes {
|
|
# Use .github/release.yml configuration to generate release notes for preTag to curTag
|
|
local curTag=$1
|
|
local preTag=$2
|
|
local token=$3
|
|
local releaseNotesPath=$4
|
|
set +e
|
|
# Calculate preTag if preTag is null
|
|
# If curTag is v2.5.0-rc1 then preTag is v2.4.0
|
|
# If curTag is v2.5.1 then preTag is v2.5.0
|
|
if [ $preTag = "null" ]
|
|
then
|
|
IFS='.' read -r -a curTagArray <<< $curTag
|
|
IFS='-' read -r -a patch <<< ${curTagArray[2]}
|
|
local tagMajor=${curTagArray[0]}
|
|
local tagMinor=${curTagArray[1]}
|
|
local tagPatch=${patch[0]}
|
|
if [ $tagPatch -gt 0 ]
|
|
then
|
|
preTag="$tagMajor.$tagMinor.$(expr $tagPatch - 1)"
|
|
else
|
|
preTag="$tagMajor.$(expr $tagMinor - 1).$tagPatch"
|
|
fi
|
|
fi
|
|
set -e
|
|
release=$(curl -X POST -H "Authorization: token $token" -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/goharbor/harbor/releases/generate-notes -d '{"tag_name":"'$curTag'","previous_tag_name":"'$preTag'"}' | jq '.body' | tr -d '"')
|
|
echo -e $release > $releaseNotesPath
|
|
}
|
|
|
|
function publishImages {
|
|
# Create curTag and push it to the goharbor namespace of dockerhub
|
|
local curTag=$1
|
|
local baseTag=$2
|
|
local dockerHubUser=$3
|
|
local dockerHubPassword=$4
|
|
local images=${@:5}
|
|
docker login -u $dockerHubUser -p $dockerHubPassword
|
|
for image in $images
|
|
do
|
|
echo "push image: $image"
|
|
docker tag $image:$baseTag $image:$curTag
|
|
retry 5 docker push $image:$curTag
|
|
done
|
|
docker logout
|
|
}
|
|
|
|
function publishPackages {
|
|
local curTag=$1
|
|
local baseTag=$2
|
|
local ghcrUser=$3
|
|
local ghcrPassword=$4
|
|
local images=${@:5}
|
|
docker login ghcr.io -u $ghcrUser -p $ghcrPassword
|
|
for image in $images
|
|
do
|
|
echo "push image: $image"
|
|
docker tag $image:$baseTag "ghcr.io/"$image:$curTag
|
|
retry 5 docker push "ghcr.io/"$image:$curTag
|
|
done
|
|
docker logout ghcr.io
|
|
}
|
|
|
|
function retry {
|
|
local -r -i max="$1"; shift
|
|
local -i n=1
|
|
until "$@"
|
|
do
|
|
if ((n==max))
|
|
then
|
|
echo "fail with $n times try..."
|
|
return 1
|
|
else
|
|
echo "failed, trying again in $n seconds..."
|
|
sleep $((n++))
|
|
fi
|
|
done
|
|
} |