@turboops/cli 1.0.0-dev.619 → 1.0.0-dev.621
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2272,7 +2272,7 @@ PIPELINE-STRUKTUR:
|
|
|
2272
2272
|
deploy-dev:
|
|
2273
2273
|
image: node:20-alpine
|
|
2274
2274
|
before_script:
|
|
2275
|
-
- npm install -g @turboops/cli
|
|
2275
|
+
- npm install -g @turboops/cli${configService.getEnvironment() === "dev" ? "@dev" : ""}
|
|
2276
2276
|
- turbo config set token \${TURBOOPS_TOKEN}
|
|
2277
2277
|
script:
|
|
2278
2278
|
- turbo deploy dev --wait # CLI erkennt Image automatisch via CI_COMMIT_SHA
|
|
@@ -2786,7 +2786,7 @@ PIPELINE-STRUKTUR:
|
|
|
2786
2786
|
- deploy-prod: rules: if: $CI_COMMIT_BRANCH == "main" (when: manual)
|
|
2787
2787
|
|
|
2788
2788
|
DEPLOY-BEFEHLE (WICHTIG: KEIN --image Flag n\xF6tig!):
|
|
2789
|
-
- TurboOps CLI installieren: npm install -g @turboops/cli
|
|
2789
|
+
- TurboOps CLI installieren: npm install -g @turboops/cli${configService.getEnvironment() === "dev" ? "@dev" : ""}
|
|
2790
2790
|
- Token setzen: turbo config set token \${TURBOOPS_TOKEN}
|
|
2791
2791
|
- Deploy: turbo deploy <stage> --wait
|
|
2792
2792
|
|