diff --git a/.changes/config.json b/.changes/config.json index d2add79c9..81eba74c6 100644 --- a/.changes/config.json +++ b/.changes/config.json @@ -115,7 +115,7 @@ "pipe": true }, { - "command": "yarn publish --access public --loglevel silly", + "command": "yarn publish --access public --loglevel silly --tag v1", "dryRunCommand": "npm publish --dry-run --access public", "pipe": true }, diff --git a/.github/workflows/publish-cli-js.yml b/.github/workflows/publish-cli-js.yml index df012ea30..b8352f777 100644 --- a/.github/workflows/publish-cli-js.yml +++ b/.github/workflows/publish-cli-js.yml @@ -393,7 +393,7 @@ jobs: - name: Publish run: | echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc - npm publish + npm publish --tag v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.ORG_NPM_TOKEN }} diff --git a/tooling/api/package.json b/tooling/api/package.json index 328ad46a7..6b45c9d6c 100644 --- a/tooling/api/package.json +++ b/tooling/api/package.json @@ -35,7 +35,7 @@ "scripts": { "build": "rollup -c --configPlugin typescript", "npm-pack": "yarn build && cd ./dist && npm pack", - "npm-publish": "yarn build && cd ./dist && yarn publish --access public --loglevel silly", + "npm-publish": "yarn build && cd ./dist && yarn publish --access public --loglevel silly --tag v1", "ts:check": "tsc -noEmit", "lint": "eslint --ext ts \"./src/**/*.ts\"", "lint:fix": "eslint --fix --ext ts \"./src/**/*.ts\"",