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 84c2d4b commit dfe9c86Copy full SHA for dfe9c86
.github/workflows/publish.yml
@@ -20,4 +20,7 @@ jobs:
20
env:
21
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
22
- name: Publish
23
- run: yarn publish --new-version ${GITHUB_REF#"refs/tags/"}
+ run: |
24
+ VERSION=${GITHUB_REF#"refs/tags/"}
25
+ echo $VERSION
26
+ yarn publish --new-version $VERSION
0 commit comments