Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: CD 수행 시 jar 파일이 생성되지 않는 버그 수정 (#56) #57

Merged
merged 4 commits into from
Dec 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/cd-back-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

Expand All @@ -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
Expand Down
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,7 @@ allOpen {
annotation("jakarta.persistence.Embeddable")
annotation("jakarta.persistence.MappedSuperclass")
}

tasks.jar {
enabled = false
}
Loading