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 6ead4bf commit f08dfda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- run: |
git config --global user.name "JeremyDolle"
git config --global user.email "[email protected]"
npm version ${{ github.event.release.tag_name }}
npm --no-git-tag-version version ${{ github.event.release.tag_name }}
- name: Install dependencies
run: |
if [ -e yarn.lock ]; then
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- run: |
git config --global user.name "JeremyDolle"
git config --global user.email "[email protected]"
npm version ${{ github.event.release.tag_name }}
npm --no-git-tag-version version ${{ github.event.release.tag_name }}
- name: Install dependencies
run: |
if [ -e yarn.lock ]; then
Expand Down

0 comments on commit f08dfda

Please sign in to comment.