[refactor] #42 - CICD 실행 조건 구체화 (#43) #20
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
name: dev-CD | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
branches-ignore: | ||
- main | ||
jobs: | ||
CI: | ||
runs-on: ubuntu-22.04 | ||
environment: dev | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Cache Gradle | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'corretto' | ||
- name: Create secret config file | ||
run: | | ||
cd src/main/resources | ||
echo "${{ secrets.APPLICATION_DEV }}" > ./application-dev.yml | ||
- name: Build with Gradle | ||
run: | | ||
chmod +x gradlew | ||
./gradlew clean build -x test | ||
- name: Set up Docker Buildx | ||
uses: docker/[email protected] | ||
- name: Login to Docker Hub | ||
uses: docker/[email protected] | ||
with: | ||
username: ${{ secrets.DEV_DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DEV_DOCKERHUB_TOKEN }} | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./Dockerfile-dev | ||
push: true | ||
tags: ${{ secrets.DEV_DOCKERHUB_USERNAME }}/${{ secrets.DEV_REPONAME }}:latest | ||
CD: | ||
needs: [CI] | ||
runs-on: ubuntu-22.04 | ||
environment: dev | ||
steps: | ||
- name: Docker Image Pull and Run | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.DEV_SERVER_HOST }} | ||
username: ${{ secrets.DEV_SERVER_USERNAME }} | ||
key: ${{ secrets.DEV_SERVER_KEY }} | ||
script: | | ||
bash /home/ubuntu/35-APPJAM-SERVER-NAPZAKMARKET/deploy.sh |