[BE] fix: 핸들러 메서드가 매핑되지 않고, 인터셉터가 적용되는 경로에 접근 시 예외 핸들링이 되지 않아 500 예외가… #137
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 Docker images | |
run: docker build -t ${{ vars.DOCKER_DEV_TAG }} . | |
- name: Push Docker images | |
run: docker push ${{ 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 }} |