Skip to content

Commit

Permalink
Merge pull request #12 from hickeyma/fix-gh-actions
Browse files Browse the repository at this point in the history
Fix GH actions
  • Loading branch information
hickeyma authored Jan 10, 2024
2 parents c35a21b + e50b2ee commit 53dabd2
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@ on:
branches:
- main
- master

defaults:
run:
shell: bash

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
python-version: '3.x'
- run: pip install mkdocs-material "mkdocs-material[imaging]"
- run: mkdocs gh-deploy --force

0 comments on commit 53dabd2

Please sign in to comment.