Skip to content

Commit 7ce393f

Browse files
committed
CD fix
1 parent f4f930c commit 7ce393f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/CD.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v1
13-
- uses: actions/setup-node@v1
13+
- name: Update package.json and push
14+
uses: actions/setup-node@v1
1415
with:
1516
node-version: 14
16-
- name: Update package.json and push
17-
run: |
17+
- run: |
1818
git config --global user.name "JeremyDolle"
1919
git config --global user.email "[email protected]"
2020
npm version ${{ github.event.release.tag_name }}
2121
git commit -am "🏷️(version) Update boilerplate to version ${{ github.event.release.tag_name }}"
22-
git push
22+
- run: git push
2323
env:
2424
github-token: ${{ secrets.GITHUB_TOKEN }}
2525
- uses: JS-DevTools/npm-publish@v1

0 commit comments

Comments
 (0)