Skip to content

Commit

Permalink
test 工作流 使用actions/download-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
eyunzhu committed Nov 8, 2024
1 parent ec57f75 commit 3ee39e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
# Upload the Minimal image as an artifact
- name: Upload minimal image artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: minimal_test_image
path: minimal_test.tar
Expand All @@ -73,7 +73,7 @@ jobs:
# Upload the LNMP image as an artifact
- name: Upload lnmp image artifact
if: ${{ github.event.inputs.push_type == 'both' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lnmp_test_image
path: lnmp_test.tar
Expand All @@ -85,7 +85,7 @@ jobs:
steps:
# Download the Minimal image artifact
- name: Download minimal image artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: minimal_test_image

Expand All @@ -109,7 +109,7 @@ jobs:
steps:
# Download the LNMP image artifact
- name: Download lnmp image artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: lnmp_test_image

Expand Down

0 comments on commit 3ee39e6

Please sign in to comment.