Skip to content

Commit 830e423

Browse files
committed
chore: 주석 삭제 및 캐시 적용
1 parent a842c21 commit 830e423

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
with:
2626
distribution: temurin
2727
java-version: 21
28+
cache: gradle
2829

2930
- name: Create application-secret.yml
3031
run: |
@@ -58,12 +59,11 @@ jobs:
5859
mkdir -p deploy
5960
cp "${{ steps.jar.outputs.jar_path }}" deploy/
6061
61-
# CodeDeploy용 파일들 포함 (infra 폴더 기준)
6262
cp infra/appspec.yml deploy/ 2>/dev/null || true
6363
cp infra/*.sh deploy/ 2>/dev/null || true
6464
6565
cd deploy
66-
ZIP_NAME="festabook-backend-$(date +'%Y%m%d%H%M%S')-${GITHUB_SHA::7}.zip"
66+
ZIP_NAME="festabook-$(date +'%Y%m%d%H%M%S')-${GITHUB_SHA::7}.zip"
6767
zip -r "$ZIP_NAME" .
6868
echo "zip_name=$ZIP_NAME" >> "$GITHUB_OUTPUT"
6969
echo "zip_path=$(pwd)/$ZIP_NAME" >> "$GITHUB_OUTPUT"
@@ -72,7 +72,7 @@ jobs:
7272
uses: aws-actions/configure-aws-credentials@v4
7373
with:
7474
aws-region: ${{ env.AWS_REGION }}
75-
role-to-assume: ${{ secrets.DEPLOY_ROLE_ARN }} # 🔧 festabook-github-oidc-role ARN
75+
role-to-assume: ${{ secrets.DEPLOY_ROLE_ARN }}
7676
role-session-name: festabook-ci-cd
7777

7878
- name: Upload artifact to S3

0 commit comments

Comments
 (0)