2023-12-16 15:24:55 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
end_to_end=$1
|
|
|
|
end_to_end_pr=$2
|
|
|
|
forgejo=$3
|
2024-03-05 16:44:26 +00:00
|
|
|
forgejo_pr_or_ref=$4
|
|
|
|
|
|
|
|
cd $forgejo
|
|
|
|
full_version=$(make show-version-full)
|
|
|
|
major_version=$(make show-version-major)
|
2023-12-16 15:24:55 +00:00
|
|
|
|
|
|
|
cd $end_to_end
|
|
|
|
date > last-upgrade
|
|
|
|
|
2024-03-05 16:44:26 +00:00
|
|
|
if test -f "$forgejo_pr_or_ref" ; then
|
|
|
|
forgejo_pr=$forgejo_pr_or_ref
|
|
|
|
head_url=$(jq --raw-output .head.repo.html_url < $forgejo_pr)
|
|
|
|
test "$head_url" != null
|
|
|
|
branch=$(jq --raw-output .head.ref < $forgejo_pr)
|
|
|
|
test "$branch" != null
|
|
|
|
echo $head_url $branch $full_version > forgejo/sources/$major_version
|
|
|
|
else
|
|
|
|
forgejo_ref=$forgejo_pr_or_ref
|
|
|
|
echo $GITHUB_SERVER_URL/$GITHUB_REPOSITORY ${forgejo_ref#refs/heads/} $full_version > forgejo/sources/$major_version
|
|
|
|
fi
|
|
|
|
|
2023-12-16 15:24:55 +00:00
|
|
|
test "$GITHUB_RUN_NUMBER"
|
2024-03-05 16:44:26 +00:00
|
|
|
echo $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_NUMBER/artifacts/forgejo > forgejo/binary-url
|