Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ibaesuyeon authored Aug 21, 2024
1 parent b324c03 commit a49b4f4
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,30 @@ jobs:
with:
distribution: 'temurin'
java-version: '17'

# (4) YML 파일 생성
- name: Set YML, Config, Key
run: |
echo "${{ secrets.APPLICATION_YML }}" | base64 --decode > src/main/resources/application.yml
echo "${{ secrets.FIREBASE_CONFIG }}" | base64 --decode > src/main/java/depth/mvp/thinkerbell/global/config/FirebaseConfig.java
echo "${{ secrets.FIREBASE_KEY }}" | base64 --decode > src/main/resources/neverland-thinkerbell-firebase-adminsdk-n4ik2-49baee872c.json
# (4) Gradle build (Test μ œμ™Έ)
# (5) Gradle build (Test μ œμ™Έ)
- name: Build with Gradle
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
with:
arguments: clean build -x test

# (5) AWS 인증 (IAM μ‚¬μš©μž Access Key, Secret Key ν™œμš©)
# (6) AWS 인증 (IAM μ‚¬μš©μž Access Key, Secret Key ν™œμš©)
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_ID }}
aws-region: ${{ env.AWS_REGION }}

# (6) λΉŒλ“œ 결과물을 S3 버킷에 μ—…λ‘œλ“œ
# (7) λΉŒλ“œ 결과물을 S3 버킷에 μ—…λ‘œλ“œ
- name: Upload to AWS S3
run: |
aws deploy push \
Expand All @@ -59,7 +67,7 @@ jobs:
--s3-location s3://$S3_BUCKET_NAME/$GITHUB_SHA.zip \
--source .
# (7) S3 버킷에 μžˆλŠ” νŒŒμΌμ„ λŒ€μƒμœΌλ‘œ CodeDeploy μ‹€ν–‰
# (8) S3 버킷에 μžˆλŠ” νŒŒμΌμ„ λŒ€μƒμœΌλ‘œ CodeDeploy μ‹€ν–‰
- name: Deploy to AWS EC2 from S3
run: |
aws deploy create-deployment \
Expand Down

0 comments on commit a49b4f4

Please sign in to comment.