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 976f718 commit f3288e1Copy full SHA for f3288e1
.github/workflows/npm-publish.yml
@@ -14,6 +14,17 @@ jobs:
14
with:
15
node-version: 14
16
registry-url: https://registry.npmjs.org/
17
- - run: yarn publish
+ - name: bump version
18
+ run: |
19
+ git config --global user.email "git@wednesday.is"
20
+ git config --global user.name "Git"
21
+ npm version patch -m 'Bump up'
22
+ - name: Push changes
23
+ uses: ad-m/github-push-action@master
24
+ with:
25
+ github_token: ${{ secrets.GITHUB_TOKEN }}
26
+ branch: ${{ github.ref }}
27
+ - name: Publish
28
+ run: yarn publish
29
env:
30
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
0 commit comments