diff --git a/scripts/publish-extensions-npm.sh b/scripts/publish-extensions-npm.sh deleted file mode 100755 index a715bc73d4..0000000000 --- a/scripts/publish-extensions-npm.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -./node_modules/.bin/npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" - -NPM_RELEASE_TAG=$(cat package.json | jq .version --raw-output | rg '.*-(?P\w+).*' -r '$channel' | cat) - -cd packages/extensions && npm publish --access=public --tag=${NPM_RELEASE_TAG:-latest} && git restore package.json diff --git a/scripts/publish-library-npm.sh b/scripts/publish-library-npm.sh deleted file mode 100755 index 6fdd16e8a8..0000000000 --- a/scripts/publish-library-npm.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -./node_modules/.bin/npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" - -NPM_RELEASE_TAG=$(cat package.json | jq .version --raw-output | rg '.*-(?P\w+).*' -r '$channel' | cat) - -npm publish --access=public --tag=${NPM_RELEASE_TAG:-latest}