Skip to content

Commit

Permalink
ci: github action + docker + aws ec2
Browse files Browse the repository at this point in the history
  • Loading branch information
g16rim committed Nov 6, 2023
1 parent 79103e2 commit acbc6b0
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 40 deletions.
59 changes: 41 additions & 18 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
name: Build with Gradle
name: Java CI with Gradle

run-name: New Push

on:
push:
branches: [ "main" ]

env:
AWS_REGION: ap-northeast-2
AWS_S3_BUCKET: yw-cicd-bucket
AWS_CODE_DEPLOY_APPLICATION: yw-cicd
AWS_CODE_DEPLOY_GROUP: yw-cicd-group
permissions:
contents: read

jobs:
build-with-gradle:

runs-on: ubuntu-20.04

steps:
Expand All @@ -26,21 +22,48 @@ jobs:
java-version: '17'
distribution: 'temurin'

- name: Make application-prod.yml
run: |
cd ./src/main/resources
touch ./application-prod.yml
echo "${{ secrets.APPLICATION_PROD }}" > ./application-prod.yml
- name: Grant execute permission for gradlew
run: chmod +x gradlew

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

- name: AWS credential 설정
uses: aws-actions/configure-aws-credentials@v1
with:
aws-region: ${{ env.AWS_REGION }}
aws-access-key-id: ${{ secrets.CICD_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.CICD_SECRET_ACCESS_KEY }}
- name: Docker build
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker build -t app .
docker tag app ${{ secrets.DOCKER_USERNAME }}/yourwriting:latest
docker push ${{ secrets.DOCKER_USERNAME }}/youwriting:latest
- name: S3로 upload
run: aws deploy push --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --ignore-hidden-files --s3-location s3://$AWS_S3_BUCKET/yw-cicd/$GITHUB_SHA.zip --source .
- name: Deploy
uses: g16rim/ssh-action@master
with:
host: ${{ secrets.HOST }} # EC2 인스턴스 퍼블릭 DNS
username: ubuntu
key: ${{ secrets.PRIVATE_KEY }} # pem 키
# 도커 작업
script: |
docker pull ${{ secrets.DOCKER_USERNAME }}/yourwriting:latest
docker stop $(docker ps -a -q)
docker run -d --log-driver=syslog -p 8080:8080 -e SPRING_PROFILES_ACTIVE=prod ${{ secrets.DOCKER_USERNAME }}/gomaoom:latest
docker rm $(docker ps --filter 'status=exited' -a -q)
docker image prune -a -f
- name: EC2에 배포
run: aws deploy create-deployment --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --deployment-config-name CodeDeployDefault.AllAtOnce --deployment-group-name ${{ env.AWS_CODE_DEPLOY_GROUP }} --s3-location bucket=$AWS_S3_BUCKET,key=yw-cicd/$GITHUB_SHA.zip,bundleType=zip
# - name: AWS credential 설정
# uses: aws-actions/configure-aws-credentials@v1
# with:
# aws-region: ${{ env.AWS_REGION }}
# aws-access-key-id: ${{ secrets.CICD_ACCESS_KEY_ID }}
# aws-secret-access-key: ${{ secrets.CICD_SECRET_ACCESS_KEY }}
#
# - name: S3로 upload
# run: aws deploy push --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --ignore-hidden-files --s3-location s3://$AWS_S3_BUCKET/yw-cicd/$GITHUB_SHA.zip --source .
#
# - name: EC2에 배포
# run: aws deploy create-deployment --application-name ${{ env.AWS_CODE_DEPLOY_APPLICATION }} --deployment-config-name CodeDeployDefault.AllAtOnce --deployment-group-name ${{ env.AWS_CODE_DEPLOY_GROUP }} --s3-location bucket=$AWS_S3_BUCKET,key=yw-cicd/$GITHUB_SHA.zip,bundleType=zip
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,4 @@ out/
### VS Code ###
.vscode/

/src/main/resources/application.yml
/src/main/resources/application-auth.yml
/src/main/resources/application.yml
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM openjdk:17-jdk
ARG JAR_FILE=build/libs/realWriting-0.0.1-SNAPSHOT.jar
COPY ${JAR_FILE} /yourwriting.jar

ENTRYPOINT ["java", "-jar", "/yourwriting.jar"]
20 changes: 0 additions & 20 deletions appspec.yml

This file was deleted.

0 comments on commit acbc6b0

Please sign in to comment.