We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17ea00e commit 77e5de2Copy full SHA for 77e5de2
1 file changed
.github/workflows/actions/publish-npm/action.yml
@@ -35,9 +35,12 @@ runs:
35
working-directory: ${{ inputs.working-directory }}
36
- name: Set Git User
37
run: |
38
- git config user.name ionitron
39
- git config user.email hi@ionicframework.com
+ git config user.name --global ionitron
+ git config user.email --global hi@ionicframework.com
40
+ git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@github.com/".insteadOf "https://github.com/"
41
shell: bash
42
+ env:
43
+ GITHUB_TOKEN: ${{ inputs.ghToken }}
44
- name: Update Version
45
run: npm version ${{ inputs.version }}
46
0 commit comments