Skip to content

Commit

Permalink
another try to use PAT properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Dani-Koza-AF committed Oct 23, 2024
1 parent 7b0116e commit 842581b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create-release-branch-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ jobs:
git config --global user.name $COMMIT_AUTHOR
git config --global user.email $COMMIT_EMAIL
git config --global credential.helper store
git credential approve <<< "url=https://github.com
username=x-access-token
password=$MY_PERSONAL_ACCESS_TOKEN"
git credential approve <<< $'url=https://github.com\nusername=x-access-token\npassword=$MY_PERSONAL_ACCESS_TOKEN'
- name: Create New Branch
id: createBranch
Expand All @@ -51,6 +49,8 @@ jobs:
git checkout -b $branchName
- name: Update Codebase
env:
GITHUB_TOKEN: ${{ secrets.CI_DEV_GITHUB_TOKEN }}
run: |
.github/workflows/scripts/updatePlugin.sh pluginVersion=${{ inputs.versionName }} buildNumber=${{ github.run_number }} iOSVersion=${{ inputs.iosVersion }} androidVersion=${{ inputs.AndroidVersion }}
git commit -m "update versions using CI"
Expand Down

0 comments on commit 842581b

Please sign in to comment.