Fixing git push
This commit is contained in:
12
action.yml
12
action.yml
@@ -49,11 +49,15 @@ runs:
|
|||||||
git config user.email "release@example.com"
|
git config user.email "release@example.com"
|
||||||
git config user.name "Release"
|
git config user.name "Release"
|
||||||
|
|
||||||
original_url="$(git remote get-url origin)"
|
gitea_url="${GITHUB_SERVER_URL#https://}" # Remove HTTPS
|
||||||
repo_url="${original_url#https://}" # Remove HTTPS
|
|
||||||
new_url="https://x-access-token:${{ secrets.CI_GIT_WRITE_TOKEN }}@$repo_url"
|
|
||||||
git remote set-url origin "$new_url"
|
|
||||||
|
|
||||||
|
log_info "Overriding git repository auth with PAT"
|
||||||
|
echo "https://Skydust:${{ secrets.CI_GIT_WRITE_TOKEN }}@${gitea_url}" > .git-credentials
|
||||||
|
cat .git-credentials
|
||||||
|
git config credential.helper store
|
||||||
|
git config --local --unset http.https://${gitea_url}/.extraheader
|
||||||
|
|
||||||
|
log_info "Pushing new tag"
|
||||||
git fetch
|
git fetch
|
||||||
git tag -a "v${NEW_VERSION}" -m "Release version ${NEW_VERSION}"
|
git tag -a "v${NEW_VERSION}" -m "Release version ${NEW_VERSION}"
|
||||||
git push origin "v${NEW_VERSION}"
|
git push origin "v${NEW_VERSION}"
|
||||||
|
|||||||
Reference in New Issue
Block a user