Skip to content

Commit 2e59f53

Browse files
committed
fix(ci): artifact name and path
1 parent ef18983 commit 2e59f53

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/docker_build_test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Upload artifact
3333
uses: actions/upload-artifact@v4
3434
with:
35-
name: myimage
35+
name: ${{ github.event.repository.name }}
3636
path: /tmp/${{ github.event.repository.name }}.tar
3737

3838
test:
@@ -45,8 +45,7 @@ jobs:
4545
- name: Download artifact
4646
uses: actions/download-artifact@v4
4747
with:
48-
name: ${{ github.event.repository.name }}.tar
49-
path: /tmp
48+
name: ${{ github.event.repository.name }}
5049

5150
- name: Test
5251
run: |

0 commit comments

Comments
 (0)