Skip to content

Commit 487ffab

Browse files
authored
Merge pull request #5288 from Shopify/revert-5285-add-provenance
Revert "Add provenance"
2 parents c97dca8 + 1643961 commit 487ffab

File tree

5 files changed

+28
-4
lines changed

5 files changed

+28
-4
lines changed

shipit.experimental.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

shipit.nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

shipit.production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

shipit.stable.yml.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

shipit.stable_3_71.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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"

0 commit comments

Comments
 (0)