Skip to content

Commit

Permalink
Merge pull request #23 from LikeLion-12th-SKHU/develop
Browse files Browse the repository at this point in the history
push
  • Loading branch information
ttttkii913 authored Jul 23, 2024
2 parents 012fc68 + 99438fd commit eb8d449
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Java CI/CD with Gradle and AWS CodeDeploy

on:
push:
branches:
- main

permissions:
contents: read

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '17'

- name: Build with Gradle
run: ./gradlew clean build -x test

- name: Prepare artifacts for deployment
run: |
mkdir -p before-deploy
cp scripts/*.sh before-deploy/
cp appspec.yml before-deploy/
cp build/libs/*.jar before-deploy/
cd before-deploy && zip -r before-deploy *
cd ../ && mkdir -p deploy
mv before-deploy/before-deploy.zip deploy/walkmate.zip
- name: Deploy to S3 (GitHub Artifacts)
uses: actions/upload-artifact@v2
with:
name: deploy
path: deploy

- name: AWS 자격증명 설정
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
aws-region: ap-northeast-2

- name: S3에 배포
run: aws s3 cp deploy/walkmate.zip s3://likelion0702821/walkmate.zip

- name: AWS CodeDeploy를 사용한 배포
run: |
aws deploy create-deployment \
--application-name walkmate-deploy \
--deployment-group-name walkmate-deploy-group \
--s3-location bucket=likelion0702821,key=likelion0702821.zip,bundleType=zip \
--region ap-northeast-2

0 comments on commit eb8d449

Please sign in to comment.