We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28898cf commit 0064dfaCopy full SHA for 0064dfa
1 file changed
.github/workflows/pages-build-deployment.yml
@@ -13,7 +13,7 @@ jobs:
13
# This workflow contains a single job called "deploy"
14
deploy:
15
# The type of runner that the job will run on
16
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
17
# Steps represent a sequence of tasks that will be executed as part of the job
18
steps:
19
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -23,7 +23,10 @@ jobs:
23
- name: "Setup Python"
24
uses: actions/setup-python@v5
25
with:
26
- python-version: 3.x
+ python-version: 3.12
27
+
28
+ - name: Install system dependencies
29
+ run: sudo apt-get update && sudo apt-get install -y libxml2-dev libxslt-dev
30
31
- name: "Install Python Packages"
32
run: pip install -r requirements.txt
0 commit comments