We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62434a0 commit cc8bf59Copy full SHA for cc8bf59
.github/workflows/CICD.yml
@@ -16,7 +16,7 @@ jobs:
16
set-variable:
17
runs-on: [self-hosted, loadbalancer-server]
18
outputs:
19
- is_blue_env: ${{ steps.check-blue.outputs.is_blue_env }}
+ is_blue_env: ${{ steps.setup-environment.outputs.is_blue_env }}
20
steps:
21
- name: Checkout code
22
uses: actions/checkout@v2
@@ -30,7 +30,7 @@ jobs:
30
31
- name: Print if Environment is Blue
32
run: |
33
- if [[ "${{ steps.check-blue.outputs.is_blue_env }}" == "true" ]]; then
+ if [[ "${{ steps.setup-environment.outputs.is_blue_env }}" == "true" ]]; then
34
echo "Environment is BLUE"
35
else
36
echo "Environment is NOT BLUE"
0 commit comments