Make Env file non-hidden
Some checks failed
Some checks failed
This commit is contained in:
parent
3674a2cf78
commit
ee44633257
1 changed files with 5 additions and 4 deletions
|
@ -39,7 +39,7 @@ jobs:
|
|||
run: |
|
||||
. /etc/os-release
|
||||
echo Debian Codename is: $VERSION_CODENAME
|
||||
echo "DEBIAN_CODENAME=$VERSION_CODENAME" >> .env
|
||||
echo "DEBIAN_CODENAME=$VERSION_CODENAME" >> env
|
||||
-
|
||||
name: Installing Node, NPM
|
||||
run: |
|
||||
|
@ -100,7 +100,8 @@ jobs:
|
|||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: build-env
|
||||
path: .env
|
||||
path: env
|
||||
if-no-files-found: error
|
||||
|
||||
upload-release:
|
||||
needs: [build-linux]
|
||||
|
@ -122,8 +123,8 @@ jobs:
|
|||
-
|
||||
name: Load .env from build job
|
||||
run: |
|
||||
mv artifacts/build-env/.env ./.env
|
||||
export $(xargs <.env)
|
||||
mv artifacts/build-env/env ./env
|
||||
export $(xargs <env)
|
||||
-
|
||||
name: Rearrange Artifact Paths
|
||||
run: |
|
||||
|
|
Reference in a new issue