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 a8b3537 commit 4722853Copy full SHA for 4722853
.github/workflows/boilerplate-release.yml
@@ -16,13 +16,14 @@ jobs:
16
with:
17
node-version: '20.x'
18
registry-url: 'https://registry.npmjs.org'
19
- - run: npm publish
20
- env:
21
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
22
- - run: |
+ - name: Bump version
+ run: |
23
git config --global user.name "ReactNativeBoilerplate Bot"
24
git config --global user.email "j.dolle.bot@thecodingmachine.com"
25
npm --no-git-tag-version version ${{ github.event.release.name }}
+ - run: npm publish
+ env:
26
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
27
- name: Commit and push
28
run: |
29
git add .
0 commit comments