File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,24 @@ jobs:
12
12
env :
13
13
API_KEY : ${{secrets.ALGOLIA_API_KEY}}
14
14
APPLICATION_ID : GERZE019PN
15
+ ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION : true
15
16
runs-on : ubuntu-latest
16
- container : algolia/docsearch-scraper
17
+ container :
18
+ image : algolia/docsearch-scraper
19
+ volumes :
20
+ - /node20217:/node20217:rw,rshared
21
+ - /node20217:/__e/node20:ro,rshared
17
22
steps :
18
23
- name : Wait for Netlify deployment
19
24
uses : whatnick/wait-action@master
20
25
with :
21
26
time : ' 50s'
22
- - uses : actions/checkout@v2
27
+ - name : install nodejs20glibc2.17
28
+ run : |
29
+ curl -LO https://unofficial-builds.nodejs.org/download/release/v20.9.0/node-v20.9.0-linux-x64-glibc-217.tar.xz
30
+ tar -xf node-v20.9.0-linux-x64-glibc-217.tar.xz --strip-components 1 -C /node20217
31
+ ldd /__e/node20/bin/node
32
+ - uses : actions/checkout@v4
23
33
- run : ' sudo apt-get install -y jq'
24
34
- run : ' echo "CONFIG=$(cat docs/.algolia/config.json | jq -r tostring)" >> $GITHUB_ENV'
25
35
- run : " cd /root && pipenv install"
Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ export default defineConfigWithTheme({
112
112
] ,
113
113
} ,
114
114
} ,
115
+
115
116
vite : {
116
117
optimizeDeps : {
117
118
exclude : [ '@mussi/vitepress-theme' ] ,
You can’t perform that action at this time.
0 commit comments