We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c44c921 commit 6718e5bCopy full SHA for 6718e5b
1 file changed
.github/workflows/auto-version-package.yml
@@ -20,6 +20,8 @@ jobs:
20
21
- name: Bump patch version and create new tag
22
id: bump_tag
23
+ env:
24
+ GH_PAT: ${{ secrets.GH_PAT }}
25
run: |
26
old_tag=$latest_tag
27
base=${old_tag#v}
@@ -32,7 +34,7 @@ jobs:
32
34
git config --global user.name "github-actions[bot]"
33
35
git tag $new_tag
36
git config --global --unset credential.helper || true
- git remote set-url origin https://x-access-token:${{ secrets.GH_PAT }}@github.com/libbierose/VofM.git
37
+ git remote set-url origin https://x-access-token:$GH_PAT@github.com/libbierose/VofM.git
38
git push origin $new_tag
39
echo "new_tag=$new_tag" >> $GITHUB_ENV
40
0 commit comments