Fix for storing Debian Codename Variable
Some checks reported warnings
Some checks reported warnings
This commit is contained in:
parent
f9bac43630
commit
7a6e6f519b
1 changed files with 3 additions and 2 deletions
|
@ -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]
|
||||||
|
|
Reference in a new issue