From f8fec394e36a011d8dcd7393f469259a622cd2bc Mon Sep 17 00:00:00 2001 From: Tawanda Kembo Date: Sat, 27 Jul 2024 16:30:27 +0200 Subject: [PATCH] chore: debug PAT_TOKEN usage in GitHub Actions workflow --- bump_version.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bump_version.sh b/bump_version.sh index 39b9d2a..7b35fb9 100755 --- a/bump_version.sh +++ b/bump_version.sh @@ -39,6 +39,10 @@ NEW_VERSION="$MAJOR.$MINOR.$PATCH" git config --global user.name "github-actions" git config --global user.email "github-actions@github.com" +# Debug information +echo "Setting remote URL with 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