We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e841d commit feefed5Copy full SHA for feefed5
.github/workflows/ci-release.yaml
@@ -40,7 +40,7 @@ jobs:
40
else
41
PRERELEASE="latest"
42
fi
43
- echo "dist-tag=$PRERELEASE" >> $GITHUB_ENV
+ echo "DIST_TAG=$PRERELEASE" >> $GITHUB_ENV
44
45
- name: Install npm dependencies
46
run: npm install
@@ -49,5 +49,5 @@ jobs:
49
env:
50
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
51
run: |
52
- echo "Publishing to npmjs.org using dist-tag: $dist-tag"
53
- npm publish --access=public --tag "$dist-tag"
+ echo "Publishing to npmjs.org using dist-tag: $DIST_TAG"
+ npm publish --access=public --tag "$DIST_TAG"
0 commit comments