Move Debian Version Info to Top of Job
Some checks failed
Run Tests on Code / run-tests (push) Successful in 4s
Build and Release Binary File / run-tests (push) Failing after 6s
Build and Release Binary File / build-linux (push) Failing after 8s
Build and Release Binary File / upload-release (push) Has been skipped

This commit is contained in:
Neshura 2023-11-17 19:22:35 +01:00
parent 4b3eb9fbdf
commit 0b96e17cf9
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -33,6 +33,13 @@ jobs:
runs-on: docker
container: rust:latest
steps:
-
name: Storing Debian Version for Package Upload Job
id: store_deb_ver
run: |
source /etc/os-release
echo Debian Version is: $VERSION_CODENAME
echo $VERSION_CODENAME >> $GITHUB_OUTPUT
-
name: Installing Node, NPM
run: |
@ -81,13 +88,6 @@ jobs:
name: linux-amd64-debian
path: artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb
if-no-files-found: error
-
name: Storing Debian Version for Upload Job
id: store_deb_ver
run: |
env -i bash -c '. /etc/os-release; echo $VERSION_CODENAME'
echo Debian Version is: $VERSION_CODENAME
echo $VERSION_CODENAME >> $GITHUB_OUTPUT
-
name: Uploading Linux AppImage Artifact
uses: actions/upload-artifact@v3