Skip to content

Commit

Permalink
Create pages-build-deployment.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jrpearson-nhs authored Dec 13, 2024
1 parent 25cadcb commit 3ab8bce
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/pages-build-deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: io Pages Deployment

# Controls when the workflow will run
on:
# Triggers the workflow on push events but only for the "master" branch and in the docs directory
push:
branches:
- 'master'
#paths:
# - 'docs/**'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "deploy"
deploy:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: "Checkout Code"
uses: actions/checkout@v3

- name: "Setup Python"
uses: actions/setup-python@v2
with:
python-version: 3.x

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

- name: "Run mkdocs to build website"
run: mkdocs gh-deploy --force --clean --verbose

0 comments on commit 3ab8bce

Please sign in to comment.