We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43145ff commit 12d3c83Copy full SHA for 12d3c83
.github/workflows/netlify.yml
@@ -20,6 +20,11 @@ jobs:
20
uses: actions/setup-node@v4
21
with:
22
node-version: 20.18
23
+
24
+ - name: Gather Meilisearch APi Key from Netlify config file
25
+ run: |
26
+ API_KEY=$(grep 'MEILISEARCH_API_KEY' netlify.toml | cut -d '=' -f2 | tr -d ' "')
27
+ echo "MEILISEARCH_API_KEY=$API_KEY" >> "$GITHUB_ENV"
28
29
- name: Build docs.gno.land
30
working-directory: ./docusaurus
@@ -30,7 +35,6 @@ jobs:
35
env:
31
36
MEILISEARCH_URL: "https://docs-search.gnoteam.com"
32
37
MEILISEARCH_INDEX_UID: "production"
33
- MEILISEARCH_API_KEY: "7a646d537285a92f436b8f2fc000e1482eb82a563f0372e210a3535764338cd7"
34
38
39
- name: Deploy to netlify
40
uses: netlify/actions/cli@master
0 commit comments