Merge branch 'dev' of github.com:LikelionUniv/Server into stag/client #43
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: stag-client-api-deploy | |
on: | |
push: | |
branches: [ "stag/client" ] | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: '17' | |
- name: app clean | |
run: ./gradlew clean | |
- name: client api build | |
run: ./gradlew :likelion-client:build -x test | |
- name: Docker login | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_EMAIL }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: ./likelion-client | |
push: true | |
tags: ${{ secrets.DOCKER_CLIENT_API_STAG_IMAGE }} | |
build-args: PROFILE=stag | |
- name: client-api-deploy | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.KEY }} | |
script: | | |
sudo docker rm -f ${{ secrets.DOCKER_CLIENT_API_STAG_CONTAINER }} | |
sudo docker rmi ${{ secrets.DOCKER_CLIENT_API_STAG_IMAGE }} | |
sudo docker-compose -f ${{ secrets.DOCKER_COMPOSE_DIRECTORY }} up -d | |
sudo docker image prune -f |