Skip to content

Commit

Permalink
ci/cd: IS_BLUE_ENV 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Curry4182 committed Mar 20, 2024
1 parent f434d14 commit b390b9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
set-variable:
runs-on: [self-hosted, loadbalancer-server]
outputs:
is_blue_env: ${{ steps.setup-environment.outputs.is_blue_env }}
is_blue_env: ${{ steps.set-variable.outputs.is_blue_env }}
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand All @@ -30,7 +30,7 @@ jobs:

- name: Print if Environment is Blue
run: |
if [[ "${{ steps.setup-environment.outputs.is_blue_env }}" == "true" ]]; then
if [[ "${{ steps.set-variable.outputs.is_blue_env }}" == "true" ]]; then
echo "Environment is BLUE"
else
echo "Environment is NOT BLUE"
Expand Down

0 comments on commit b390b9e

Please sign in to comment.