Merge pull request #50 from Domitory-CheckMate/feature/49-post #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: Checkmate 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: | | |
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 |