We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fc4608 commit 5dd00aaCopy full SHA for 5dd00aa
1 file changed
.github/workflows/publish.yml
@@ -24,10 +24,12 @@ jobs:
24
uses: levibostian/action-hide-sensitive-inputs@v1
25
- uses: actions/checkout@v4
26
- name: Setup git repo
27
+ env:
28
+ GH_API_TOKEN: ${{ secrets.GH_API_TOKEN }}
29
run: |
30
git config user.name $GITHUB_ACTOR
31
git config user.email gh-actions-${GITHUB_ACTOR}@github.com
- git remote add gh-origin https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
32
+ git remote add gh-origin https://${GITHUB_ACTOR}:${GH_API_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
33
- name: Set up Ruby
34
uses: ruby/setup-ruby@v1
35
with:
0 commit comments