study-hub #296
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: study-hub | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
issues: write | |
checks: write | |
pull-requests: write | |
actions: write | |
# https://github.com/actions/setup-java | |
# actions/setup-java@v2는 사용자 정의 배포를 지원하고 Zulu OpenJDK, Eclipse Temurin 및 Adopt OpenJDK를 기본적으로 지원합니다. v1은 Zulu OpenJDK만 지원합니다. | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: zulu | |
- uses: actions/checkout@v3 | |
- name: make application.yml | |
run: | | |
# mkdir src/main/resources | |
mkdir -p ./src/main/resources | |
# create application.yml | |
cd ./src/main/resources | |
# application.yml 파일 생성 | |
touch ./application.yml | |
# GitHub-Actions 에서 설정한 값을 application.yml 파일에 쓰기 | |
echo "${{ secrets.APPLICATION }}" >> ./application.yml | |
shell: bash | |
- name: Build with Gradle | |
run: | | |
./gradlew bootJar | |
- name: web docker build and push | |
run: | | |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | |
docker build -t ${{ secrets.DOCKER_REPO }}/studyhub_backend . | |
docker push ${{ secrets.DOCKER_REPO }}/studyhub_backend | |
deploy: | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: deploy | |
uses: appleboy/ssh-action@v0.1.7 | |
with: | |
host: ${{ secrets.HOST }} | |
username: ubuntu | |
key: ${{ secrets.KEY }} | |
port: 22 | |
script: | | |
sudo docker pull ${{ secrets.DOCKER_REPO }}/studyhub_backend | |
sudo docker compose down | |
sudo docker compose up -d |