diff --git a/.github/workflows/cf_publish_release_npm.yml b/.github/workflows/cf_publish_release_npm.yml index d768e458a..98fd5b66e 100644 --- a/.github/workflows/cf_publish_release_npm.yml +++ b/.github/workflows/cf_publish_release_npm.yml @@ -49,14 +49,3 @@ jobs: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} - - - name: Commit and push version bump - if: ${{ steps.version.outputs.VERSION != '0.0.0-test' }} - run: | - npm version ${{ steps.version.outputs.VERSION }} --no-git-tag-version - git config user.name "GitHub Actions" - git config user.email "ci@github.com" - git commit -am "chore: set version to ${GITHUB_REF#refs/tags/v}" - git push origin HEAD - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}