File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -71,21 +71,21 @@ jobs:
71
71
if : ${{ inputs.do_test }}
72
72
uses : actions/download-artifact@v4
73
73
with :
74
- name : tester-image_ubuntu2004
74
+ name : ${{ inputs.arch }}- tester-image_ubuntu2004
75
75
path : /tmp
76
76
77
77
- name : Download tester archlinux image
78
78
if : ${{ inputs.do_test }}
79
79
uses : actions/download-artifact@v4
80
80
with :
81
- name : tester-image_archlinux
81
+ name : ${{ inputs.arch }}- tester-image_archlinux
82
82
path : /tmp
83
83
84
84
- name : Load tester image
85
85
if : ${{ inputs.do_test }}
86
86
run : |
87
- docker load -i /tmp/tester-image_ubuntu2004.tar
88
- docker load -i /tmp/tester-image_archlinux.tar
87
+ docker load -i /tmp/${{ inputs.arch }}- tester-image_ubuntu2004.tar
88
+ docker load -i /tmp/${{ inputs.arch }}- tester-image_archlinux.tar
89
89
docker image ls -a
90
90
91
91
- name : Build and package
Original file line number Diff line number Diff line change @@ -50,13 +50,13 @@ jobs:
50
50
# cache-from: type=gha
51
51
# cache-to: type=gha,mode=max
52
52
tags : tester-image_ubuntu2004:latest
53
- outputs : type=docker,dest=/tmp/tester-image_ubuntu2004.tar
53
+ outputs : type=docker,dest=/tmp/${{ inputs.arch }}- tester-image_ubuntu2004.tar
54
54
55
55
- name : Upload artifact
56
56
uses : actions/upload-artifact@v4
57
57
with :
58
- name : tester-image_ubuntu2004
59
- path : /tmp/tester-image_ubuntu2004.tar
58
+ name : ${{ inputs.arch }}- tester-image_ubuntu2004
59
+ path : /tmp/${{ inputs.arch }}- tester-image_ubuntu2004.tar
60
60
compression-level : 0
61
61
62
62
prepare-tester-docker-archlinux :
@@ -77,11 +77,11 @@ jobs:
77
77
# cache-from: type=gha
78
78
# cache-to: type=gha,mode=max
79
79
tags : tester-image_archlinux:latest
80
- outputs : type=docker,dest=/tmp/tester-image_archlinux.tar
80
+ outputs : type=docker,dest=/tmp/${{ inputs.arch }}- tester-image_archlinux.tar
81
81
82
82
- name : Upload artifact
83
83
uses : actions/upload-artifact@v4
84
84
with :
85
- name : tester-image_archlinux
86
- path : /tmp/tester-image_archlinux.tar
85
+ name : ${{ inputs.arch }}- tester-image_archlinux
86
+ path : /tmp/${{ inputs.arch }}- tester-image_archlinux.tar
87
87
compression-level : 0
You can’t perform that action at this time.
0 commit comments