Skip to content

Commit

Permalink
chore(cd): cd 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobhboy committed Apr 21, 2024
1 parent cd4ffbf commit 453d1bf
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
username: ${{ secrets.SERVER_USERNAME }}
password: ${{ secrets.SERVER_PASSWORD }}
port: ${{ secrets.SERVER_SSH_PORT }}
script: sh ~/script/deploy-main-server.sh
script: |
chmod +x ~/script/deploy-main-server.sh
sh ~/script/deploy-main-server.sh
- name: deploy logging-server
# if: steps.changes.outputs.logging == 'true'
Expand All @@ -40,4 +42,6 @@ jobs:
username: ${{ secrets.SERVER_USERNAME }}
password: ${{ secrets.SERVER_PASSWORD }}
port: ${{ secrets.SERVER_SSH_PORT }}
script: sh ~/script/deploy-logging-server.sh
script: |
chmod +x ~/script/deploy-logging-server.sh
sh ~/script/deploy-logging-server.sh

0 comments on commit 453d1bf

Please sign in to comment.