Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim-Dong-Jun99 committed Oct 3, 2023
1 parent 3979052 commit 853f91d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

jobs:
build:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
Expand Down Expand Up @@ -75,7 +75,9 @@ jobs:
sudo docker pull ${{ secrets.DOCKER_REPO }}/uliga_backend
bash deploy.sh
deploy_was2:
needs: deploy_was1
needs:
- deploy_was1
- deploy_web1
runs-on: ubuntu-latest
steps:
- name: was2 무중단 배포
Expand All @@ -102,7 +104,9 @@ jobs:
script: |
bash deploy_was1.sh
deploy_web2:
needs: deploy_web1
needs:
- deploy_was1
- deploy_web1
runs-on: ubuntu-latest
steps:
- name: was2 nginx 무중단 배포
Expand Down

0 comments on commit 853f91d

Please sign in to comment.