Corrected .env write directory

This commit is contained in:
Ceferino Patino 2022-04-07 20:51:26 -05:00
commit a8a0641f04

View file

@ -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