Fix for storing Debian Codename Variable
Some checks reported warnings
Run Tests on Code / run-tests (push) Successful in 5s
Build and Release Binary File / run-tests (push) Successful in 18s
Build and Release Binary File / upload-release (push) Has been cancelled
Build and Release Binary File / build-linux (push) Has been cancelled

This commit is contained in:
Neshura 2023-11-17 19:44:20 +01:00
parent f9bac43630
commit 7a6e6f519b
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -39,10 +39,11 @@ jobs:
run: | run: |
. /etc/os-release . /etc/os-release
echo Debian Codename is: $VERSION_CODENAME echo Debian Codename is: $VERSION_CODENAME
echo $VERSION_CODENAME >> $GITHUB_OUTPUT echo "debian_codename=$VERSION_CODENAME" >> $env:GITHUB_OUTPUT
- -
name: Installing Node, NPM name: Installing Node, NPM
run: | run: |
echo ${{ steps.store_deb_ver.outputs.debian_codename }}
apt update apt update
apt install -y \ apt install -y \
nodejs npm \ nodejs npm \
@ -96,7 +97,7 @@ jobs:
path: artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage path: artifacts/comicinfo-editor-v2-${{ github.ref_name }}-amd64.AppImage
if-no-files-found: error if-no-files-found: error
outputs: outputs:
debian_codename: ${{ steps.store_deb_ver.outputs.VERSION_CODENAME }} debian_codename: ${{ steps.store_deb_ver.outputs.DEBIAN_CODENAME }}
upload-release: upload-release:
needs: [build-linux] needs: [build-linux]