Skip to content

Commit

Permalink
Update job to hopefully work, also, just committing to master to get …
Browse files Browse the repository at this point in the history
…the action working rather than making extra pull requests.
  • Loading branch information
Isaak-Malers committed Feb 27, 2024
1 parent 28b2728 commit 9b8586b
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,24 @@ concurrency:
cancel-in-progress: false

jobs:
# Build job
# TODO: run this command to build the docs, for now I am running it locally before checking in:
# mkdocs build -s -d ./_site -v
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install Mkdocs
run: |
pip install mkdocs
- name: Run Mkdocs Build
run: |
mkdocs build -s -d ./_site -v
# Deployment job
deploy:
Expand Down

0 comments on commit 9b8586b

Please sign in to comment.