diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml deleted file mode 100644 index 4a3af21..0000000 --- a/.github/workflows/build-docs.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Build Docs - -on: - push: - branches: ["main", "dev"] - -permissions: - contents: read - pages: write - -jobs: - build-docs: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 - with: - python-version: "3.11" - - name: Install dependencies - run: | - python -m pip install -r requirements/docs.txt - python -m pip install . - quartodoc build --config docs/_quarto.yml - - uses: quarto-dev/quarto-actions/setup@v2 - - name: Publish to GitHub Pages (and render) - uses: quarto-dev/quarto-actions/publish@v2 - with: - target: gh-pages - path: docs - GITHUB_EMAIL: JoFrhwld@gmail.com - GITHUB_USERNAME: JoFrhwld - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # this secret is always available for github actions