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