Skip to content

Commit

Permalink
chore: Update dev_deploy.yml to *-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
yooniicode authored Jan 23, 2025
1 parent b320e19 commit 3cb5f5f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4 # 저장소 코드 체크아웃
- uses: actions/checkout@v3 # 저장소 코드 체크아웃

- name: Set up JDK 17 # Java 개발 킷 설정
uses: actions/setup-java@v3
Expand Down Expand Up @@ -52,13 +52,13 @@ jobs:
build-root-directory: project

- name: Upload build artifact # 빌드된 아티팩트 업로드
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Edison-Server
path: project/build/libs/*.jar

- name: Upload Test Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results
path: project/build/reports/tests/test/
Expand All @@ -69,7 +69,7 @@ jobs:

steps:
- name: Download build artifact # 이전 단계에서 업로드한 아티팩트 다운로드
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Edison-Server
path: build/libs/
Expand Down

0 comments on commit 3cb5f5f

Please sign in to comment.