-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: CD 수행 시 jar 파일이 생성되지 않는 버그 수정 (#57)
- Loading branch information
1 parent
7c822ea
commit 870603e
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,11 @@ jobs: | |
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: set timezone | ||
uses: szenius/[email protected] | ||
with: | ||
timezoneLinux: "Asia/Seoul" | ||
|
||
- name: repository checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
|
@@ -30,6 +35,9 @@ jobs: | |
- name: assign grant gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: build with gradle for rest docs | ||
run: ./gradlew build | ||
|
||
- name: build with gradle | ||
run: ./gradlew build | ||
|
||
|
@@ -41,7 +49,7 @@ jobs: | |
key: ${{secrets.SCKR_DEV_SSH_KEY}} | ||
source: "./build/libs/*.jar" | ||
target: ${{ vars.SCKR_DEV_JAR_DIR }} | ||
strip_components: 3 | ||
strip_components: 2 | ||
|
||
- name: run application use ssh | ||
uses: appleboy/ssh-action@master | ||
|
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