Skip to content

Commit

Permalink
Merge pull request #16 from YAPP-Github/feat/ISSUE-15
Browse files Browse the repository at this point in the history
config: CI workflow
  • Loading branch information
Seokyeong237 authored Jan 17, 2024
2 parents edd3613 + 0105acc commit 4233cc9
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Build and Push Docker Image to AWS ECR

on:
push:
branches: [develop]
pull_request:
branches: [develop] # develop 브랜치에 push/pr 했을 때 workflow를 trigger함.

jobs:
build-and-push-image:
runs-on: ubuntu-latest
steps:
# 코드 내려받기
- name: Checkout source code
uses: actions/checkout@v2

# 자바 버전 세팅
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: '17'
distribution: 'temurin'

# 빌드 권한 부여
- name: Grant execute permission for gradlew
run: chmod +x gradlew

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

# AWS 자격 증명
- 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: ap-northeast-2

# AWS ECR 로그인
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1

# Image 빌드 및 ECR에 Push 수행
- name: Build, tag, and push image to Amazon ECR
id: build-image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: ${{ secrets.ECR_REPOSITORY_NAME }}
IMAGE_TAG: ${{ github.sha }}
run: |
docker buildx build --platform=linux/amd64 -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG"
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM openjdk:17

ARG JAR_PATH=build/libs/fullcar-0.0.1-SNAPSHOT.jar

COPY ${JAR_PATH} fullcar.jar

ENTRYPOINT ["java","-jar","/fullcar.jar"]

0 comments on commit 4233cc9

Please sign in to comment.