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 1fc23e6 commit 38b9f6dCopy full SHA for 38b9f6d
ci/cpu/upload.sh
@@ -54,6 +54,8 @@ twine upload --skip-existing -u ${TWINE_USERNAME:-rapidsai} dist/*
54
echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc
55
if [[ "$BUILD_MODE" == "branch" && "${SOURCE_BRANCH}" != 'main' ]]; then
56
echo "Nightly build, publishing to npm with nightly tag"
57
+ # Updates package.json version before publishing since previous publications can't be overwritten
58
+ npm version --no-git-tag-version $(git describe --tags)
59
npm publish --tag=nightly
60
else
61
npm publish
0 commit comments