[BE] refactor: OpenIdUserInfoProvider 삭제 및 OpenIdClient에 비즈니스 로직 구현 (… #189
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: CD-Back-Dev | |
on: | |
push: | |
branches: | |
- dev | |
paths: | |
- 'backend/**' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
working-directory: backend | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: repository checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
token: ${{ secrets.SUBMODULE_TOKEN }} | |
- name: install java 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'zulu' | |
- name: assign grant gradlew | |
run: chmod +x gradlew | |
- name: bootJar with gradle | |
run: ./gradlew bootJar | |
- name: Docker Login | |
uses: docker/[email protected] | |
with: | |
username: ${{ vars.DOCKER_HUB_DEV_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_DEV_LOGIN_TOKEN }} | |
- name: Build And Push docker image | |
run: docker build --platform linux/arm64/v8 --push --tag ${{ vars.DOCKER_DEV_TAG }} . | |
- name: run application use ssh | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ vars.FESTAGO_DEV_IP }} | |
username: ${{ vars.FESTAGO_DEV_USERNAME }} | |
key: ${{secrets.FESTAGO_DEV_SSH_KEY}} | |
script_stop: true | |
script: ${{ vars.FESTAGO_DEV_DEPLOY_COMMAND }} |