Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,9 @@ workflows:
build-test-deploy:
jobs:
- build
- deploy_test_registry:
requires:
- build
- test_lint:
requires:
- build
Expand Down Expand Up @@ -414,9 +417,6 @@ workflows:
- test_e2e_socket:
requires:
- build
- deploy_test_registry:
requires:
- build
- test_e2e_registry:
requires:
- build
Expand Down
7 changes: 7 additions & 0 deletions packages/registry/bin/deploy
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env sh

export SYNCANO_AUTH_KEY=$REGISTRY_PRODUCTION_SYNCANO_AUTH_KEY
export SYNCANO_PROJECT_INSTANCE=registry-$CIRCLE_BRANCH
npx s deploy

exit $?