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 name: Downloading All Build Artifacts
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
with:
path: artifacts
- -
name: Debug Upload name: Debug Upload
run: | 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 name: Rearrange Artifact Paths
run: | run: |
mkdir release 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 name: Upload Artifacts As Generic Packages
run: | run: |