Skip to content
Merged
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
11 changes: 11 additions & 0 deletions .github/workflows/backend-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,17 @@ jobs:
run: |
./gradlew clean build

- name: Verify JAR File
working-directory: HalfFifty_BE
run: ls -la build/libs/

# 빌드 결과물을 아티팩트로 업로드
- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifact
path: HalfFifty_BE/build/libs/*.jar

deploy:
name: Deploy Backend
needs: test
Expand Down
Loading