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 20, 2024
1 parent 4405b29 commit 2fedb6a
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,29 +24,33 @@ jobs:
# (1) κΈ°λ³Έ 체크아웃
- name: Checkout
uses: actions/checkout@v3

# (2) gradlew에 μ‹€ν–‰ κΆŒν•œ λΆ€μ—¬
- name: Make gradlew executable
run: chmod +x gradlew

# (2) JDK 17 μ„ΈνŒ…
# (3) JDK 17 μ„ΈνŒ…
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'

# (3) Gradle build (Test μ œμ™Έ)
# (4) Gradle build (Test μ œμ™Έ)
- name: Build with Gradle
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
with:
arguments: clean build -x test

# (4) AWS 인증 (IAM μ‚¬μš©μž Access Key, Secret Key ν™œμš©)
# (5) 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 }}
aws-region: ${{ env.AWS_REGION }}

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

0 comments on commit 2fedb6a

Please sign in to comment.