Release Action Adjustments + Debugging
Some checks failed
Some checks failed
This commit is contained in:
parent
c71360c959
commit
29c4927b25
1 changed files with 23 additions and 5 deletions
|
@ -21,7 +21,7 @@ jobs:
|
||||||
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'"
|
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'"
|
||||||
end
|
end
|
||||||
|
|
||||||
build:
|
build-linux:
|
||||||
needs: test
|
needs: test
|
||||||
if: success()
|
if: success()
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
@ -62,21 +62,39 @@ jobs:
|
||||||
mv -v src-tauri/target/release/bundle/deb/*.deb artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb
|
mv -v src-tauri/target/release/bundle/deb/*.deb artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb
|
||||||
mv -v src-tauri/target/release/bundle/appimage/*.AppImage artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage
|
mv -v src-tauri/target/release/bundle/appimage/*.AppImage artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage
|
||||||
-
|
-
|
||||||
name: Uploading Build Artifact
|
name: Uploading Linux Binary Artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: comicinfo-editor-v2-linux-amd64
|
name: linux-amd64-binary
|
||||||
path: artifacts/
|
path: artifacts/comicinfo-editor-v2-linux-amd64
|
||||||
|
if-no-files-found: error
|
||||||
|
-
|
||||||
|
name: Uploading Linux Debian Artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: linux-amd64-debian
|
||||||
|
path: artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb
|
||||||
|
if-no-files-found: error
|
||||||
|
-
|
||||||
|
name: Uploading Linux AppImage Artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: linux-amd64-appimage
|
||||||
|
path: artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
upload-release:
|
upload-release:
|
||||||
needs: build
|
needs: [build-linux]
|
||||||
if: success()
|
if: success()
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Downloading All Build Artifacts
|
name: Downloading All Build Artifacts
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
|
-
|
||||||
|
name: Debug Upload
|
||||||
|
run: |
|
||||||
|
ls -lap ./
|
||||||
-
|
-
|
||||||
name: Rearrange Artifact Paths
|
name: Rearrange Artifact Paths
|
||||||
run: |
|
run: |
|
||||||
|
|
Reference in a new issue