Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/DO-SOPT-SERVER/ChaeAg into …
Browse files Browse the repository at this point in the history
…deploy-test
  • Loading branch information
ChaeAg committed Dec 20, 2023
2 parents 16e2c85 + 08d27a1 commit 3b11179
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI

on:
push:
branches: [ "deploy-test" ]

jobs:
build:
runs-on: ubuntu-22.04
env:
working-directory: ThirdSeminar

steps:
- name: 체크아웃
uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'

- name: application.yaml 생성
run: |
cd src/main/resources
echo "${{ secrets.APPLICATION }}" > ./application.yaml
working-directory: ${{ env.working-directory }}

- name: 빌드
run: |
chmod +x gradlew
./gradlew build -x test
working-directory: ${{ env.working-directory }}
shell: bash
63 changes: 63 additions & 0 deletions .github/workflows/testCD.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: CD

on:
push:
branches: [ "deploy-test" ]

jobs:
deploy-ci:
runs-on: ubuntu-22.04
env:
working-directory: ThirdSeminar

steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'

- name: application.yaml 생성
run: |
cd src/main/resources
echo "${{ secrets.APPLICATION }}" > ./application-deploy.yaml
working-directory: ${{ env.working-directory }}

- name: 빌드
run: |
chmod +x gradlew
./gradlew build -x test
working-directory: ${{ env.working-directory }}
shell: bash

- name: docker build 가능하도록 환경 설정
uses: docker/[email protected]

- name: docker hub에로그인
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_LOGIN_USERNAME }}
password: ${{ secrets.DOCKERHUB_LOGIN_ACCESSTOKEN }}

- name: docker image 빌드 및 푸시
run: |
docker build --platform linux/amd64 -t chaeag/do-sopt-seminar .
docker push {dockerhub계정id}/do-sopt-seminar
working-directory: ${{ env.working-directory }}

deploy-cd:
needs: deploy-ci
runs-on: ubuntu-22.04

steps:
- name: 도커 컨테이너 실행
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.RELEASE_SERVER_IP }}
username: ${{ secrets.RELEASE_SERVER_USER }}
key: ${{ secrets.RELEASE_SERVER_KEY }}
script: |
cd ~
./deploy.sh

0 comments on commit 3b11179

Please sign in to comment.