Skip to content

Commit 152fe43

Browse files
Fixed release action
1 parent 3492364 commit 152fe43

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@
7979
- name: Update package.json to development version
8080
working-directory: ./typescript
8181
run: |
82-
npm version ${{ github.event.inputs.developmentVersion }} --no-git-tag-version
8382
git config --global user.name "${{ github.actor }}"
8483
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
84+
git pull
85+
npm version ${{ github.event.inputs.developmentVersion }} --no-git-tag-version
8586
git commit -a -m "Updated package.json to development version"
8687
git push

0 commit comments

Comments
 (0)