From 06371d30a06e9b595a97c9d7ef652016a259c230 Mon Sep 17 00:00:00 2001 From: Micah Gale Date: Wed, 10 Jan 2024 09:24:20 -0600 Subject: [PATCH] Started deploy with building pages --- .github/workflows/deploy.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..28839985 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,18 @@ +on: + push: + # branches: + # - main + pull_request: + # branches: + #- main +jobs: + deploy-pages: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 + with: + python-version: 3.8 + - run: pip install --user montepy[doc] + - run: cd doc + - run: make html