We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdf29e3 commit 5b44bd3Copy full SHA for 5b44bd3
.github/workflows/release.yml
@@ -72,11 +72,11 @@ jobs:
72
return 'v' + packageJson.version;
73
74
- name: Create & push git tag
75
- if: github.event.inputs.npm_tag == 'latest'
+ if: github.event.inputs.version == 'latest'
76
run: |
77
git tag ${{ steps.version_to_release.outputs.result }}
78
git push origin ${{ steps.version_to_release.outputs.result }}
79
80
- name: Publish to npm
81
82
- pnpm -r publish --tag ${{ github.event.inputs.npm_tag }} --publish-branch ${{ github.event.inputs.branch }}
+ pnpm -r publish --tag ${{ github.event.inputs.version }} --publish-branch ${{ github.event.inputs.branch }}
0 commit comments