diff --git a/.github/workflows/backend-ci-cd.yml b/.github/workflows/backend-ci-cd.yml index c47825b..492c307 100644 --- a/.github/workflows/backend-ci-cd.yml +++ b/.github/workflows/backend-ci-cd.yml @@ -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