Skip to content

Commit

Permalink
Fix the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cedx committed Apr 7, 2024
1 parent b70b1bf commit 1928110
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,20 @@ jobs:
steps:
- name: Fetch sources
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: npm
node-version: 21
- name: Set up Python
uses: actions/setup-python@v5
with:
cache: pip
python-version: 3.12
- name: Install dependencies
run: pip install --requirement=etc/requirements.txt
run: |
npm install
pip install --requirement=etc/requirements.txt
- name: Build documentation
run: npx gulp doc
- name: Deploy documentation
Expand Down

0 comments on commit 1928110

Please sign in to comment.