File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 55 - main
66
77jobs :
8- # Generates LLM files before Vercel builds
98 pre-build :
109 runs-on : ubuntu-latest
1110 steps :
1918 with :
2019 node-version : ' 18'
2120 cache : ' npm'
22- cache-dependency-path : ' docusaurus/package-lock.json'
21+ cache-dependency-path : ' ./ docusaurus/package-lock.json'
2322
2423 - name : 📦 Install dependencies
2524 working-directory : ./docusaurus
@@ -28,14 +27,14 @@ jobs:
2827 - name : 🤖 Generate and commit LLMs files
2928 working-directory : ./docusaurus
3029 run : |
31- # Génère les fichiers
30+ # Generate files
3231 node scripts/generate-llms.js
3332
3433 # Configure git
3534 git config --local user.email "action@github.com"
3635 git config --local user.name "LLMs Generator"
3736
38- # Commit si changé
37+ # Commit if changed
3938 git add static/llms*.txt
4039 if ! git diff --staged --quiet; then
4140 git commit -m "🤖 Update LLMs files [skip ci]"
4948 runs-on : ubuntu-latest
5049 needs : pre-build
5150 steps :
52- # Ton workflow existant exactement pareil...
5351 - name : Get Vercel deployment URL
5452 id : get-url-prod
5553 uses : derrickmehaffy/vercel-preview-url@main
You can’t perform that action at this time.
0 commit comments