Skip to content

Commit feefed5

Browse files
committed
Fix CI
1 parent 12e841d commit feefed5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
else
4141
PRERELEASE="latest"
4242
fi
43-
echo "dist-tag=$PRERELEASE" >> $GITHUB_ENV
43+
echo "DIST_TAG=$PRERELEASE" >> $GITHUB_ENV
4444
4545
- name: Install npm dependencies
4646
run: npm install
@@ -49,5 +49,5 @@ jobs:
4949
env:
5050
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5151
run: |
52-
echo "Publishing to npmjs.org using dist-tag: $dist-tag"
53-
npm publish --access=public --tag "$dist-tag"
52+
echo "Publishing to npmjs.org using dist-tag: $DIST_TAG"
53+
npm publish --access=public --tag "$DIST_TAG"

0 commit comments

Comments
 (0)