Skip to content

Commit

Permalink
update: Github upload-artifact,download-artifact 버전 수정
Browse files Browse the repository at this point in the history
지원 종료된 v3 버전에서 v4 버전을 사용하도록 변경하였습니다
  • Loading branch information
snowykte0426 committed Feb 7, 2025
1 parent 5592004 commit 4635ba9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@ jobs:
- name: 🔨 Build Gradle
run: ./gradlew build --no-daemon
- name: ?? Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: groom-server-jar
path: build/libs/*.jar
retention-days: 1

Expand All @@ -48,9 +47,8 @@ jobs:
- name: 📂 Checkout Repository
uses: actions/checkout@v3
- name: 📦 Download Artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: groom-server-jar
path: build/libs/
- name: 🐋 Docker Login
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
Expand Down

0 comments on commit 4635ba9

Please sign in to comment.