Move Debian Version Info to Top of Job
Some checks failed
Some checks failed
This commit is contained in:
parent
4b3eb9fbdf
commit
0b96e17cf9
1 changed files with 8 additions and 8 deletions
|
@ -32,7 +32,14 @@ jobs:
|
||||||
if: success()
|
if: success()
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container: rust:latest
|
container: rust:latest
|
||||||
steps:
|
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
|
name: Installing Node, NPM
|
||||||
run: |
|
run: |
|
||||||
|
@ -81,13 +88,6 @@ jobs:
|
||||||
name: linux-amd64-debian
|
name: linux-amd64-debian
|
||||||
path: artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb
|
path: artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.deb
|
||||||
if-no-files-found: error
|
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
|
name: Uploading Linux AppImage Artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
|
|
Reference in a new issue