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 f4f930c commit 7ce393fCopy full SHA for 7ce393f
.github/workflows/CD.yml
@@ -10,16 +10,16 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v1
13
- - uses: actions/setup-node@v1
+ - name: Update package.json and push
14
+ uses: actions/setup-node@v1
15
with:
16
node-version: 14
- - name: Update package.json and push
17
- run: |
+ - run: |
18
git config --global user.name "JeremyDolle"
19
git config --global user.email "[email protected]"
20
npm version ${{ github.event.release.tag_name }}
21
git commit -am "🏷️(version) Update boilerplate to version ${{ github.event.release.tag_name }}"
22
- git push
+ - run: git push
23
env:
24
github-token: ${{ secrets.GITHUB_TOKEN }}
25
- uses: JS-DevTools/npm-publish@v1
0 commit comments