diff options
| author | Dhravya <[email protected]> | 2024-03-30 23:33:09 -0700 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-03-30 23:33:09 -0700 |
| commit | 5286a30d513c7c3e5684a4e70c078ab7342883a9 (patch) | |
| tree | ddf00caa773ea0c95ef2eca0e8d20a21947e9504 /.github/workflows | |
| parent | fix: build command (diff) | |
| download | supermemory-5286a30d513c7c3e5684a4e70c078ab7342883a9.tar.xz supermemory-5286a30d513c7c3e5684a4e70c078ab7342883a9.zip | |
add env manually
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3636e44f..009b9a70 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,6 +31,13 @@ jobs: run: bun run pages:build working-directory: apps/web shell: bash + env: + GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }} + GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }} + NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }} + DATABASE_URL: ${{ secrets.DATABASE_URL }} + NEXTAUTH_URL: ${{ secrets.NEXTAUTH_URL }} + BACKEND_SECURITY_KEY: ${{ secrets.BACKEND_SECURITY_KEY }} - name: Publish to Cloudflare Pages uses: cloudflare/pages-action@v1 |