Corrected .env write directory
This commit is contained in:
parent
9492a4f260
commit
a8a0641f04
1 changed files with 2 additions and 2 deletions
4
.github/workflows/build-release.yml
vendored
4
.github/workflows/build-release.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
- name: Write .env to build
|
- name: Write .env to build
|
||||||
env:
|
env:
|
||||||
DOTENV: '${{ secrets.DOTENV }}'
|
DOTENV: '${{ secrets.DOTENV }}'
|
||||||
run: echo "$DOTENV" >> .env
|
run: echo "$DOTENV" >> ./client/.env
|
||||||
- name: Use Node.js 16.x
|
- name: Use Node.js 16.x
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
with:
|
with:
|
||||||
|
|
@ -28,6 +28,6 @@ jobs:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
tag: ${{ github.ref }}
|
tag: ${{ github.ref }}
|
||||||
file: ./build.tar.gz
|
file: ./build.tar.gz
|
||||||
asset_name: $tag-dist.tar.gz
|
asset_name: $tag-build.tar.gz
|
||||||
asset_content_type: application/gzip
|
asset_content_type: application/gzip
|
||||||
overwrite: true
|
overwrite: true
|
||||||
|
|
|
||||||
Reference in a new issue