We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f464180 commit 98ca22bCopy full SHA for 98ca22b
.github/workflows/i.yml
@@ -66,6 +66,7 @@ jobs:
66
run: |
67
git -c init.defaultBranch=default-branch init
68
git remote add origin "$REPOSITORY_URL"
69
+ git config "http.$REPOSITORY_URL.extraheader" "Authorization: Basic $(echo -n "x-access-token:$GH_TOKEN" | base64 -w0)"
70
71
tags_under_major_version="$(git ls-remote --sort=v:refname --tags origin "refs/tags/$MAJOR_POINTAG*")"
72
major_pointag_information="$(head -1 <<< "$tags_under_major_version")"
@@ -105,4 +106,4 @@ jobs:
105
106
fi
107
108
git fetch --depth 1 origin "$highest_tag_revision"
- git -c "http.$REPOSITORY_URL.extraheader=Authorization: Token $GH_TOKEN" push -f origin "FETCH_HEAD:refs/tags/$MAJOR_POINTAG"
109
+ git push -f origin "FETCH_HEAD:refs/tags/$MAJOR_POINTAG"
0 commit comments