Skip to content

Commit b390b9e

Browse files
committed
ci/cd: IS_BLUE_ENV 경로 수정
1 parent f434d14 commit b390b9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CICD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
set-variable:
1717
runs-on: [self-hosted, loadbalancer-server]
1818
outputs:
19-
is_blue_env: ${{ steps.setup-environment.outputs.is_blue_env }}
19+
is_blue_env: ${{ steps.set-variable.outputs.is_blue_env }}
2020
steps:
2121
- name: Checkout code
2222
uses: actions/checkout@v2
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Print if Environment is Blue
3232
run: |
33-
if [[ "${{ steps.setup-environment.outputs.is_blue_env }}" == "true" ]]; then
33+
if [[ "${{ steps.set-variable.outputs.is_blue_env }}" == "true" ]]; then
3434
echo "Environment is BLUE"
3535
else
3636
echo "Environment is NOT BLUE"

0 commit comments

Comments
 (0)