Skip to content

Commit

Permalink
[feat] #3 create CICD.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ziiyouth authored Dec 31, 2023
1 parent 73461b3 commit 50a94f8
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle

name: Sweet CI/CD with Gradle

on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: ๐Ÿญ Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'

- name: ๐Ÿญ application.yml ํŒŒ์ผ์„ ์ƒ์„ฑ ํ•ฉ๋‹ˆ๋‹ค.
run: |
mkdir ./src/main/resources
touch ./src/main/resources/application.yml
echo "${{ secrets.APPLICATION }}" > ./src/main/resources/application.yml # github actions์—์„œ ์„ค์ •ํ•œ ๊ฐ’์„ application.yml ํŒŒ์ผ์— ์“ฐ๊ธฐ
- name: ๐Ÿญ gradle build๋ฅผ ์œ„ํ•œ ๊ถŒํ•œ์„ ๋ถ€์—ฌํ•ฉ๋‹ˆ๋‹ค.
run: chmod +x gradlew

- name: ๐Ÿญ gradle build ์ค‘์ž…๋‹ˆ๋‹ค.
run: ./gradlew build -x test

- name: ๐Ÿญ docker image build ํ›„ docker hub์— pushํ•ฉ๋‹ˆ๋‹ค.
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker build -t ${{ secrets.DOCKER_REPOSITORY }}/${{ secrets.DOCKER_IMAGE }} .
docker push ${{ secrets.DOCKER_REPOSITORY }}/${{ secrets.DOCKER_IMAGE }}
- name: ๐Ÿญ docker hub์—์„œ pull ํ›„ deployํ•ฉ๋‹ˆ๋‹ค.
uses: appleboy/ssh-action@master
with:
username: ubuntu
host: ${{ secrets.AWS_HOST }}
key: ${{ secrets.AWS_KEY }}
script: |
sudo docker pull ${{ secrets.DOCKER_REPOSITORY }}/${{ secrets.DOCKER_IMAGE }}
chmod 777 ./deploy.sh
./deploy.sh
docker image prune -f

0 comments on commit 50a94f8

Please sign in to comment.