File tree Expand file tree Collapse file tree 5 files changed +28
-4
lines changed
Expand file tree Collapse file tree 5 files changed +28
-4
lines changed Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ deploy:
2424 - bash -i -c "npm_config_loglevel=verbose pnpm changeset-build-no-docs"
2525 - bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle"
2626 - bash -i -c "npm_config_loglevel=verbose node bin/create-cli-duplicate-package.js"
27- - bash -i -c "npm_config_loglevel=verbose NPM_CONFIG_PROVENANCE=true pnpm changeset publish --tag experimental"
27+ - bash -i -c "npm_config_loglevel=verbose pnpm changeset publish --tag experimental"
Original file line number Diff line number Diff line change @@ -24,5 +24,5 @@ deploy:
2424 - bash -i -c "npm_config_loglevel=verbose pnpm changeset-manifests"
2525 - bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle-for-release"
2626 - bash -i -c "npm_config_loglevel=verbose node bin/create-cli-duplicate-package.js"
27- - bash -i -c "npm_config_loglevel=verbose NPM_CONFIG_PROVENANCE=true pnpm changeset publish --tag nightly"
27+ - bash -i -c "npm_config_loglevel=verbose pnpm changeset publish --tag nightly"
2828 - bash -i -c "./bin/package.js"
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ deploy:
1414 - bash -i -c "npm_config_loglevel=verbose pnpm clean"
1515 - bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle-for-release"
1616 - bash -i -c "npm_config_loglevel=verbose node bin/create-cli-duplicate-package.js"
17- - bash -i -c "npm_config_loglevel=verbose NPM_CONFIG_PROVENANCE=true pnpm changeset publish"
17+ - bash -i -c "npm_config_loglevel=verbose pnpm changeset publish"
1818 - bash -i -c "./bin/package.js"
1919 - bash -i -c "./bin/create-doc-pr.js"
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ deploy:
1414 - bash -i -c "npm_config_loglevel=verbose pnpm clean"
1515 - bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle-for-release"
1616 - bash -i -c "npm_config_loglevel=verbose node bin/create-cli-duplicate-package.js"
17- - bash -i -c "npm_config_loglevel=verbose NPM_CONFIG_PROVENANCE=true pnpm changeset publish"
17+ - bash -i -c "npm_config_loglevel=verbose pnpm changeset publish"
1818 # When this is no longer the latest stable version, do 2 things:
1919 # 1. Replace the previous line with this, replacing 3.x with the actual version:
2020 # - bash -i -c "npm_config_loglevel=verbose pnpm changeset publish --tag stable-3.x"
Original file line number Diff line number Diff line change 1+ ci :
2+ require : []
3+
4+ dependencies :
5+ override :
6+ # We are making sure the deploys point to the NPM registry to prevent
7+ # 404 issues like the one described in this comment:
8+ # https://github.com/yarnpkg/yarn/issues/2935#issuecomment-355292633
9+ - echo 'registry "https://registry.npmjs.org/"' | tee .npmrc .yarnrc
10+ - curl -fsSL https://get.pnpm.io/install.sh | PNPM_VERSION=8.15.7 SHELL=`which bash` bash -
11+ - bash -i -c "pnpm install"
12+ deploy :
13+ override :
14+ - bash -i -c "npm_config_loglevel=verbose pnpm clean"
15+ - bash -i -c "npm_config_loglevel=verbose NODE_ENV=production pnpm bundle-for-release"
16+ - bash -i -c "npm_config_loglevel=verbose node bin/create-cli-duplicate-package.js"
17+ - bash -i -c "npm_config_loglevel=verbose pnpm changeset publish"
18+ # When this is no longer the latest stable version, do 2 things:
19+ # 1. Replace the previous line with this, replacing 3.x with the actual version:
20+ # - bash -i -c "npm_config_loglevel=verbose pnpm changeset publish --tag stable-3.x"
21+ # This will prevent publishes from being tagged as latest.
22+ # 2. Remove the following 2 lines, which update Homebrew and Shopify.dev docs
23+ - bash -i -c "./bin/package.js"
24+ - bash -i -c "./bin/create-doc-pr.js"
You can’t perform that action at this time.
0 commit comments