diff --git a/.forgejo/workflows/build+release.yml b/.forgejo/workflows/build+release.yml index 7ce49e2..4ac96eb 100644 --- a/.forgejo/workflows/build+release.yml +++ b/.forgejo/workflows/build+release.yml @@ -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: |