We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd50aa2 commit c1b2d73Copy full SHA for c1b2d73
.github/workflows/release.yml
@@ -31,6 +31,11 @@ jobs:
31
npm set registry "https://registry.npmjs.org/"
32
npm set //registry.npmjs.org/:_authToken $NPM_TOKEN
33
npm whoami
34
+ - name: Git Setup
35
+ run: |
36
+ git config user.name $GITHUB_ACTOR
37
+ git config user.email gh-actions-${GITHUB_ACTOR}@github.com
38
+ git remote add gh-origin https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
39
- name: Install Dependencies
40
run: npm ci
41
- name: Release
0 commit comments