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