We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91af1d2 commit 4203fa6Copy full SHA for 4203fa6
1 file changed
.github/workflows/sync-orama.yml
@@ -39,8 +39,8 @@ jobs:
39
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
40
with:
41
# We want to ensure that the Node.js version running here respects our supported versions
42
- node-version-file: ".nvmrc"
43
- cache: "pnpm"
+ node-version-file: '.nvmrc'
+ cache: 'pnpm'
44
45
- name: Install packages
46
run: pnpm install --frozen-lockfile
@@ -49,5 +49,6 @@ jobs:
49
working-directory: apps/site
50
run: node --run sync-orama
51
env:
52
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53
ORAMA_INDEX_ID: ${{ github.event_name == 'push' && secrets.ORAMA_PRODUCTION_INDEX_ID || secrets.ORAMA_INDEX_ID }}
54
ORAMA_SECRET_KEY: ${{ github.event_name == 'push' && secrets.ORAMA_PRODUCTION_SECRET_KEY || secrets.ORAMA_SECRET_KEY }}
0 commit comments