File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ jobs:
220220 - run : docker buildx inspect --bootstrap
221221
222222 anchor1 :
223- name : Anchor test
223+ name : Anchor test 1
224224 runs-on : ubuntu-24.04
225225 steps :
226226 - name : Step 1
@@ -234,7 +234,7 @@ jobs:
234234 run : echo ok
235235
236236 anchor2 :
237- name : Anchor test
237+ name : Anchor test 2
238238 runs-on : ubuntu-24.04
239239 steps :
240240 - name : Step 1
@@ -246,3 +246,24 @@ jobs:
246246 - name : Step 3
247247 if : *lintcond2
248248 run : echo ok
249+
250+ artifact :
251+ name : Artifact test
252+ runs-on : ubuntu-24.04
253+ steps :
254+ - name : Create file
255+ run : echo ok > test.txt
256+ - name : Upload artifact, zipped
257+ uses : actions/upload-artifact@v7
258+ with :
259+ name : zipped-artifact
260+ path : test.txt
261+ compression-level : 0
262+ archive : false
263+ - name : Upload artifact, not zipped
264+ uses : actions/upload-artifact@v7
265+ with :
266+ name : not-zipped-artifact
267+ path : test.txt
268+ compression-level : 0
269+ archive : false
You can’t perform that action at this time.
0 commit comments