-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from tawanda-kembo/feat/automate-versioning
chore: fix PAT_TOKEN usage in GitHub Actions workflow
- Loading branch information
Showing
1 changed file
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,11 +41,20 @@ git config --global user.email "[email protected]" | |
|
||
# Debug information | ||
echo "Setting remote URL with PAT_TOKEN" | ||
echo "PAT_TOKEN: $PAT_TOKEN" | ||
echo "PAT_TOKEN: ${#PAT_TOKEN}" | ||
|
||
# Set the remote URL with the PAT | ||
git remote set-url origin https://${PAT_TOKEN}@github.com/tawanda-kembo/code-collator.git | ||
git remote set-url origin "https://${PAT_TOKEN}@github.com/tawanda-kembo/code-collator.git" | ||
|
||
# Create a new tag | ||
git tag "v$NEW_VERSION" | ||
git push origin "v$NEW_VERSION" | ||
|
||
# Push the tag using the PAT | ||
GIT_ASKPASS=$(mktemp) | ||
echo "echo \$PAT_TOKEN" > $GIT_ASKPASS | ||
chmod +x $GIT_ASKPASS | ||
|
||
GIT_HTTP_USER_AGENT="git/2.29.0" GIT_ASKPASS=$GIT_ASKPASS git push origin "v$NEW_VERSION" | ||
|
||
# Clean up | ||
rm $GIT_ASKPASS |