diff options
| author | Fuwn <[email protected]> | 2021-04-12 12:15:54 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-04-12 12:15:54 -0700 |
| commit | 9936e05dc8dca0dc1ed4dcd00c430829b9ea6bd8 (patch) | |
| tree | 837759058520bf7ac0fb7418ec0da3a46ba3103d | |
| parent | feature: Algolia search (diff) | |
| download | site-9936e05dc8dca0dc1ed4dcd00c430829b9ea6bd8.tar.xz site-9936e05dc8dca0dc1ed4dcd00c430829b9ea6bd8.zip | |
fix?: Pass secrets as environment variables
| -rw-r--r-- | .github/workflows/deploy.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 91d7e71..38f3786 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,8 +19,11 @@ jobs: run: | npm i npm run build + - name: Deploy 🚀 uses: JamesIves/[email protected] with: branch: gh-pages folder: build + env: + ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }} |