Skip to content

Commit bcdaf37

Browse files
authored
Merge pull request #73 from NHSDigital/wd/patch/deployment-action-workflow
Update pages-build-deployment.yml
2 parents 28898cf + 0064dfa commit bcdaf37

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/pages-build-deployment.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# This workflow contains a single job called "deploy"
1414
deploy:
1515
# The type of runner that the job will run on
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-22.04
1717
# Steps represent a sequence of tasks that will be executed as part of the job
1818
steps:
1919
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -23,7 +23,10 @@ jobs:
2323
- name: "Setup Python"
2424
uses: actions/setup-python@v5
2525
with:
26-
python-version: 3.x
26+
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
2730

2831
- name: "Install Python Packages"
2932
run: pip install -r requirements.txt

0 commit comments

Comments
 (0)