Skip to content

Commit c4d6cbd

Browse files
committedMar 22, 2024
Remove staging setup
1 parent 5c435f9 commit c4d6cbd

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed
 

‎package.json

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"deploy:boxel-host:preview-staging": "cd packages/boxel-ui/addon && pnpm build && cd ../../host && BASE_REALM_HOSTING_DISABLED=true NODE_OPTIONS='--max_old_space_size=8192' pnpm exec ember deploy s3-preview-staging --verbose",
1212
"deploy:boxel-host:preview-production": "cd packages/boxel-ui/addon && pnpm build && cd ../../host && BASE_REALM_HOSTING_DISABLED=true NODE_OPTIONS='--max_old_space_size=8192' pnpm exec ember deploy s3-preview-production --verbose",
1313
"deploy:boxel-motion": "cd packages/boxel-motion/addon && pnpm build && cd ../test-app && pnpm exec ember deploy",
14-
"deploy:boxel-motion:preview-staging": "cd packages/boxel-motion/addon && pnpm build && cd ../test-app && pnpm exec ember deploy s3-preview-staging --verbose",
1514
"deploy:boxel-motion:preview-production": "cd packages/boxel-motion/addon && pnpm build && cd ../test-app && pnpm exec ember deploy s3-preview-production --verbose",
1615
"lint": "pnpm run --filter './packages/**' --if-present -r lint",
1716
"lint:fix": "pnpm run --filter './packages/**' --if-present -r lint:fix"

‎packages/boxel-motion/test-app/config/deploy.js

+1-8
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ module.exports = function (deployTarget) {
1919
},
2020
};
2121

22-
if (deployTarget === 'staging') {
23-
ENV.build.environment = 'production';
24-
}
25-
2622
if (deployTarget === 'production') {
2723
ENV.build.environment = 'production';
2824
}
@@ -32,10 +28,7 @@ module.exports = function (deployTarget) {
3228
ENV.plugins = ['build'];
3329
}
3430

35-
if (
36-
deployTarget === 's3-preview-staging' ||
37-
deployTarget === 's3-preview-production'
38-
) {
31+
if (deployTarget === 's3-preview-production') {
3932
ENV.s3.prefix = process.env.PR_BRANCH_NAME;
4033
}
4134

0 commit comments

Comments
 (0)
Failed to load comments.