diff options
| author | Fuwn <[email protected]> | 2021-04-12 13:39:06 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-04-12 13:39:06 -0700 |
| commit | 358f644fa74327d21d0cd7bfef1cf2c27b1cad41 (patch) | |
| tree | b2edfa845f78c0ad2abb0fde9afd52cdffa945eb | |
| parent | fix?: Pass secrets as environment variables (diff) | |
| download | site-358f644fa74327d21d0cd7bfef1cf2c27b1cad41.tar.xz site-358f644fa74327d21d0cd7bfef1cf2c27b1cad41.zip | |
fix?: Pass environment variables during build stage
| -rw-r--r-- | .github/workflows/deploy.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 38f3786..0f5e504 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,6 +16,8 @@ jobs: uses: actions/[email protected] - name: Install and Build 🔧 + env: + ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }} run: | npm i npm run build |