diff --git a/.github/workflows/version-bump-publish.yml b/.github/workflows/version-bump-publish.yml index 1fac39c..f16cdd7 100644 --- a/.github/workflows/version-bump-publish.yml +++ b/.github/workflows/version-bump-publish.yml @@ -22,6 +22,6 @@ jobs: - name: bump and pub if: ${{ github.event.inputs.tag != '' }} run: | - npm version ${{ github.event.inputs.level }} + npm version ${{ github.event.inputs.tag }} git push - git tag -a v${{ github.event.inputs.level }} -m "v${{ github.event.inputs.level }}" + git tag -a v${{ github.event.inputs.tag }} -m "v${{ github.event.inputs.tag }}"