Skip to content

Commit f08dfda

Browse files
committed
🐛(CD): Fix workflow on git add
1 parent 6ead4bf commit f08dfda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- run: |
1717
git config --global user.name "JeremyDolle"
1818
git config --global user.email "[email protected]"
19-
npm version ${{ github.event.release.tag_name }}
19+
npm --no-git-tag-version version ${{ github.event.release.tag_name }}
2020
- name: Install dependencies
2121
run: |
2222
if [ -e yarn.lock ]; then
@@ -47,7 +47,7 @@ jobs:
4747
- run: |
4848
git config --global user.name "JeremyDolle"
4949
git config --global user.email "[email protected]"
50-
npm version ${{ github.event.release.tag_name }}
50+
npm --no-git-tag-version version ${{ github.event.release.tag_name }}
5151
- name: Install dependencies
5252
run: |
5353
if [ -e yarn.lock ]; then

0 commit comments

Comments
 (0)