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.
2 parents 003e783 + 732aa17 commit 7cf2afbCopy full SHA for 7cf2afb
.github/workflows/publish.yml
@@ -17,6 +17,7 @@ jobs:
17
uses: actions/checkout@v2
18
with:
19
fetch-depth: '0'
20
+ token: ${{ secrets.GITHUB_TOKEN }}
21
22
- name: Bump version and push tag/create release point
23
id: bump_version
@@ -28,6 +29,11 @@ jobs:
28
29
# basically just using this step to grab the level to pass to `npm version`
30
DRY_RUN: true
31
32
+ - name: Setup Git
33
+ run: |
34
+ git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
35
+ git config user.name "$GITHUB_ACTOR"
36
+
37
- name: Bump package.json version
38
run: npm version ${{ steps.bump_version.outputs.part }}
39
0 commit comments