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 4141 run : make -C packaging info
4242 - uses : actions/upload-artifact@v4
4343 with :
44- name : package -${{ matrix.BUILD_ARCH }}
44+ name : packages -${{ matrix.BUILD_ARCH }}
4545 path : |
4646 build/packages/*
4747 !build/packages/**/*.sha512
Original file line number Diff line number Diff line change @@ -52,10 +52,19 @@ jobs:
5252 contents : write
5353 steps :
5454 - uses : actions/checkout@v4
55- - uses : actions/download-artifact@v4
55+
56+ - name : Download package artifacts
57+ uses : actions/download-artifact@v4
5658 with :
57- pattern : package -*
59+ pattern : packages -*
5860 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 }}
5968
6069 - name : generate build provenance
6170 uses : actions/attest-build-provenance@7668571508540a607bdfd90a87a560489fe372eb # v2.1.0
You can’t perform that action at this time.
0 commit comments