Skip to content

Commit

Permalink
deploy: called workflow와 caller workflow에 secrets 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeeeyeon committed Aug 30, 2024
1 parent 446c144 commit 150feff
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/packy-cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@ jobs:
uses: ./.github/workflows/reusable-cd.yml
with:
profile: dev
secrets:
ACTION_TOKEN: ${{ secrets.ACTION_TOKEN }}
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
11 changes: 11 additions & 0 deletions .github/workflows/reusable-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ on:
profile:
type: string
required: true
secrets:
ACTION_TOKEN:
required: true
AWS_ACCESS_KEY:
required: true
AWS_SECRET_ACCESS_KEY:
required: true
AWS_REGION:
required: true
CODECOV_TOKEN:
required: true

jobs:
run:
Expand Down

0 comments on commit 150feff

Please sign in to comment.