File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 66 job1 :
77 runs-on : ubuntu-latest
88 steps :
9- - run : mkdir stuff
10- - run : echo "Artifact from run job1" >> stuff /output.txt
11- - run : echo "Artifact from run job1" >> stuff /output1.txt
9+ - run : mkdir -p artifacts/docs/site/
10+ - run : echo "Artifact from run job1" >> artifacts/docs/site /output.txt
11+ - run : echo "Artifact from run job1" >> artifacts/docs/site /output1.txt
1212 - uses : actions/upload-artifact@v4
1313 with :
1414 name : Artifact1
1515 if-no-files-found : error
16- path : ' ./** '
16+ path : artifacts/docs/site/
1717 job2 :
1818 runs-on : ubuntu-latest
1919 steps :
2323 with :
2424 name : Artifact2
2525 if-no-files-found : error
26- path : ' ./* *'
26+ path : ' *'
2727 merge :
2828 runs-on : ubuntu-latest
2929 needs : [job1, job2]
You can’t perform that action at this time.
0 commit comments