Skip to content

Commit

Permalink
🐛(CD): Fix workflow on git add
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyDolle committed Jan 17, 2022
1 parent cbc9bd2 commit 6ead4bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
token: ${{ secrets.NPM_TOKEN }}
- name: Commit and push
run: |
git add .
git commit -am "🏷️(version) Update boilerplate to version ${{ github.event.release.tag_name }}"
git push
env:
Expand Down Expand Up @@ -62,6 +63,7 @@ jobs:
tag: ${{ github.event.release.tag_name }}
- name: Commit and push
run: |
git add .
git commit -am "🏷️(version) Update boilerplate to rc version ${{ github.event.release.tag_name }}"
git push
env:
Expand Down

0 comments on commit 6ead4bf

Please sign in to comment.