We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f462cb commit 0322011Copy full SHA for 0322011
1 file changed
.github/workflows/release.yml
@@ -52,9 +52,9 @@ jobs:
52
53
- name: Release new version 🛠
54
run: |
55
- git config --global user.email "${{ vars.GIT_EMAIL }}"
56
- git config --global user.name "${{ vars.GIT_NAME }}"
57
- pnpm exec nx release ${{ github.event.inputs.version || '' }} --verbose --dryRun=${{ github.event.inputs.dryRun }}
+ git config user.name "github-actions[bot]"
+ git config user.email "github-actions[bot]@users.noreply.github.com"
+ git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
58
env:
59
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments