Skip to content

Commit

Permalink
refactor(github) : source 값을 정적으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Woongbin06 committed Apr 16, 2024
1 parent 2f586f2 commit 6ade375
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,29 +25,19 @@ jobs:
- name: Build with Gradle Wrapper
run: ./gradlew clean build -x test

- name: Check directory contents
run: |
pwd
ls -l
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Check directory contents
run: |
pwd
ls -l
- name: Deploy to server
uses: appleboy/[email protected]
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_NAME }}
password: ${{ secrets.SERVER_PASSWORD }}
source: ${{ secrets.SOURCE_PATH }}
source: "build/libs"
target: ${{ secrets.DIST_PATH }}

- name: Execute jar file
Expand Down

0 comments on commit 6ade375

Please sign in to comment.