Skip to content

Commit

Permalink
release(2.1.5): fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
arturu committed Apr 27, 2024
1 parent 00a34bb commit 8c4462d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ jobs:
git commit -m "Update file version ${{ env.release_tag }}"
# Update version in package.json
npm version ${{ env.release_tag }}
git add "package.json"
git commit -m "Update package.json version ${{ env.release_tag }}"
#npm version ${{ env.release_tag }}
#git add "package.json"
#git commit -m "Update package.json version ${{ env.release_tag }}"
git push origin
git tag ${{ env.release_tag }}
Expand All @@ -107,6 +107,7 @@ jobs:
- name: Build and Push to npm registry
if: env.valid_tag == 'true'
run: |
npm version ${{ env.release_tag }}
npm install
npm run build:prod
rm -rf .git .github node_modules .gitignore
Expand Down

0 comments on commit 8c4462d

Please sign in to comment.