Adjust Artifact Moving Due to Nesting

This commit is contained in:
Neshura 2023-11-17 18:29:21 +01:00
parent 1a25a86c8a
commit fb16fc1856
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -94,15 +94,19 @@ jobs:
-
name: Downloading All Build Artifacts
uses: actions/download-artifact@v3
with:
path: artifacts
-
name: Debug Upload
run: |
ls -lap ./
ls -lap artifacts
ls -lap artifacts/linux-amd64-appimage
ls -lap artifacts/linux-amd64-appimage/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage
-
name: Rearrange Artifact Paths
run: |
mkdir release
mv -v comicinfo-editor-v2-linux-amd64/comicinfo-editor-v2-linux-amd64/* release/
find artifacts/ -type f -print0 | xargs -0 mv -t release
-
name: Upload Artifacts As Generic Packages
run: |