Skip to content

Commit

Permalink
fix: cd 명령 추가
Browse files Browse the repository at this point in the history
리팩토링 과정에서 backend 디렉토리로 이동하는 것 누락
  • Loading branch information
kimyu0218 committed Mar 8, 2024
1 parent 30d7b9a commit 52938a5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/blue-green-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Blue/Green CD for Backend

on:
push:
paths: ["backend/**"]
branches: ["release", "*hotfix*"]
#paths: ["backend/**"]
#branches: ["release", "*hotfix*"]

env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
Expand All @@ -19,6 +19,7 @@ jobs:

- name: Generate .env file and SSL files
run: |
cd backend
echo "${{ secrets.ENV_FILE }}" > .env
echo "DOCKER_USERNAME=${{ secrets.DOCKER_USERNAME }}" >> .env
echo "GITHUB_SHA=${{ github.sha }}" >> .env
Expand Down

0 comments on commit 52938a5

Please sign in to comment.