[hotfix] swagger 접속 안되는 문제 해결 #42
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: server | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- develop | |
paths: | |
- "backend/**" | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./backend/memetory | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- run : echo "${{ secrets.DEV_YML }}" > ./src/main/resources/application-dev.yml | |
- name: Log in to Docker Hub | |
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | |
with: | |
username: ${{ secrets.DOCKER_ID }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Execute Gradle build and analyze | |
run: ./gradlew jib | |
- name: Run scripts in server | |
uses: appleboy/ssh-action@master | |
with: | |
key: ${{ secrets.KEY }} | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USER_NAME }} | |
script: ${{ secrets.SCRIPT }} |