Release Action Adjustments + Debugging
Some checks failed
Run Tests on Code / run-tests (push) Successful in 5s
Build and Release Binary File / run-tests (push) Failing after 21s
Build and Release Binary File / build-linux (push) Successful in 10m53s
Build and Release Binary File / upload-release (push) Failing after 8s

This commit is contained in:
Neshura 2023-11-17 18:13:35 +01:00
parent c71360c959
commit 29c4927b25
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -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: |