Skip to content

Commit

Permalink
deploy: 워크플로우에 잘못 기입한 값 수정 (#272)
Browse files Browse the repository at this point in the history
* deploy: secrets 오타 수정

* deploy: prod 배포 스크립트 profile 수정 및 secrets 추가
  • Loading branch information
leeeeeyeon authored Aug 30, 2024
1 parent 44b3b76 commit fb0d5d2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/packy-cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
secrets:
ACTION_TOKEN: ${{ secrets.ACTION_TOKEN }}
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
9 changes: 7 additions & 2 deletions .github/workflows/packy-cd-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ jobs:
name: Call Reusable Deploy Workflow
uses: ./.github/workflows/reusable-cd.yml
with:
profile: dev

profile: prod
secrets:
ACTION_TOKEN: ${{ secrets.ACTION_TOKEN }}
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

# - name: Update Release
# uses: release-drafter/release-drafter@v5
Expand Down

0 comments on commit fb0d5d2

Please sign in to comment.