diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a09ba0..946932d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,7 +3,7 @@ on: push: branches: - master - - main + jobs: deploy: runs-on: ubuntu-latest @@ -13,4 +13,9 @@ jobs: with: python-version: 3.x - run: pip install mkdocs-material mkdocs-section-index - - run: mkdocs gh-deploy --force + - run: mkdocs build + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@4.1.3 + with: + branch: gh-pages # The branch the action should deploy to. + folder: site # The folder the action should deploy. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b5237dd --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +site/ +.DS_STORE \ No newline at end of file