Adjust Artifact Moving Due to Nesting
This commit is contained in:
parent
1a25a86c8a
commit
fb16fc1856
1 changed files with 6 additions and 2 deletions
|
@ -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: |
|
||||||
|
|
Reference in a new issue