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 6290234 commit 0d6984bCopy full SHA for 0d6984b
.github/workflows/npm-publish.yml
@@ -25,8 +25,13 @@ jobs:
25
run: |
26
if [[ ${VERSION} == *"alpha"* || ${VERSION} == *"beta"* || ${VERSION} == *"rc"* ]]; then echo "NPM_TAG=next"; else echo "NPM_TAG=latest"; fi >> $GITHUB_ENV
27
echo ${NPM_TAG}
28
- - name: Create apexgrid version
+
29
+ - name: Version the package
30
run: npm version ${VERSION} --no-git-tag-version --save --verbose
- - run: npm publish --tag ${NPM_TAG}
31
+ working-directory: dist
32
33
+ - name: Publish the package
34
+ run: npm publish --tag ${NPM_TAG}
35
36
env:
37
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
0 commit comments