Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,30 +345,30 @@ deploy-staging:
- node ./scripts/deploy/deploy.ts staging staging root
- node ./scripts/deploy/upload-source-maps.ts staging root

# deploy-prod-canary:
# stage: deploy:canary
# extends:
# - .base-configuration
# - .main
# script:
# - export BUILD_MODE=canary
# - yarn
# - yarn build:bundle
# - node ./scripts/deploy/deploy.ts prod canary root
# - node ./scripts/deploy/upload-source-maps.ts canary root

# deploy-next-major-canary:
# stage: deploy
# extends:
# - .base-configuration
# - .next-major-branch
# script:
# - export BUILD_MODE=canary
# - VERSION=$(node -p -e "require('./lerna.json').version")
# - yarn
# - yarn build:bundle
# - node ./scripts/deploy/deploy.ts prod v${VERSION%%.*}-canary root
# - node ./scripts/deploy/upload-source-maps.ts v${VERSION%%.*}-canary root
deploy-prod-canary:
stage: deploy:canary
extends:
- .base-configuration
- .main
script:
- export BUILD_MODE=canary
- yarn
- yarn build:bundle
- node ./scripts/deploy/deploy.ts prod canary root
- node ./scripts/deploy/upload-source-maps.ts canary root

deploy-next-major-canary:
stage: deploy
extends:
- .base-configuration
- .next-major-branch
script:
- export BUILD_MODE=canary
- VERSION=$(node -p -e "require('./lerna.json').version")
- yarn
- yarn build:bundle
- node ./scripts/deploy/deploy.ts prod v${VERSION%%.*}-canary root
- node ./scripts/deploy/upload-source-maps.ts v${VERSION%%.*}-canary root

deploy-manual:
stage: deploy
Expand Down