Skip to content
Snippets Groups Projects
Commit 57ef7372 authored by Christian Boettcher's avatar Christian Boettcher
Browse files

add debug step to pipe to see some varibale values

parent db92f30a
No related branches found
No related tags found
No related merge requests found
Pipeline #128661 passed
...@@ -34,12 +34,21 @@ variables: ...@@ -34,12 +34,21 @@ variables:
- chmod 700 ~/.ssh - chmod 700 ~/.ssh
stages: stages:
- debug
- build - build
- publish - publish
- deploy - deploy
- test-deployment - test-deployment
- cleanup - cleanup
debug:
stage: debug
script:
- echo $CI_COMMIT_BRANCH
- echo $MANUAL_FULL_DEPLOY_TESTING
- echo $CI_COMMIT_TAG
- echo $MANUAL_FULL_DEPLOY_PRODUCTION
build-custom-image: build-custom-image:
stage: build stage: build
...@@ -88,7 +97,7 @@ full-deploy-testing: ...@@ -88,7 +97,7 @@ full-deploy-testing:
light-deploy-testing: light-deploy-testing:
stage: deploy stage: deploy
rules: rules:
- if: ($CI_COMMIT_BRANCH == "main" && ($MANUAL_FULL_DEPLOY_TESTING == "" || $MANUAL_FULL_DEPLOY_TESTING == "false")) - if: ($CI_COMMIT_BRANCH == "main" && $MANUAL_FULL_DEPLOY_TESTING !~ /true/ )
<<: *ssh_setup <<: *ssh_setup
environment: Testing environment: Testing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment