diff --git a/.github/workflows/build-client.yml b/.github/workflows/build-client.yml index 2e07a2a..15178ce 100644 --- a/.github/workflows/build-client.yml +++ b/.github/workflows/build-client.yml @@ -11,6 +11,10 @@ jobs: steps: - name: Check out repository code uses: actions/checkout@v2 + - name: Make .env + run: | + touch ./.env.local + echo VITE_API_ENDPOINT=${{ vars.PUBLIC_API_ENDPOINT }} >> ./.env.local - name: Install dependencies run: yarn - name: Build