File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 41
41
run : make -C packaging info
42
42
- uses : actions/upload-artifact@v4
43
43
with :
44
- name : package -${{ matrix.BUILD_ARCH }}
44
+ name : packages -${{ matrix.BUILD_ARCH }}
45
45
path : |
46
46
build/packages/*
47
47
!build/packages/**/*.sha512
Original file line number Diff line number Diff line change @@ -52,10 +52,19 @@ jobs:
52
52
contents : write
53
53
steps :
54
54
- uses : actions/checkout@v4
55
- - uses : actions/download-artifact@v4
55
+
56
+ - name : Download package artifacts
57
+ uses : actions/download-artifact@v4
56
58
with :
57
- pattern : package -*
59
+ pattern : packages -*
58
60
path : ${{ env.BUILD_PACKAGES }}
61
+ - name : Moving packages out of folders
62
+ run : |
63
+ pushd ${{ env.BUILD_PACKAGES }}
64
+ find . -mindepth 2 -type f -exec mv -t . {} +
65
+ find . -mindepth 1 -maxdepth 1 -type d -exec rm -r {} +
66
+ popd
67
+ ls -R ${{ env.BUILD_PACKAGES }}
59
68
60
69
- name : generate build provenance
61
70
uses : actions/attest-build-provenance@7668571508540a607bdfd90a87a560489fe372eb # v2.1.0
You can’t perform that action at this time.
0 commit comments