From 8db4450ba694d723f789b0a47e1e8deafaf551bd Mon Sep 17 00:00:00 2001 From: Nils Wentzell Date: Fri, 5 Jul 2024 13:15:22 +0200 Subject: [PATCH] Adjust documentation build for 0.1.x branch --- .github/workflows/python-package.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index ead8679..6b571c0 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -5,9 +5,9 @@ name: Python package on: push: - branches: [ "main", "triqs" ] + branches: [ "main", "0.1.x" ] pull_request: - branches: [ "main", "triqs" ] + branches: [ "main", "0.1.x" ] jobs: build: @@ -44,9 +44,9 @@ jobs: make html - name: Deploy documentation to website - if: matrix.python-version == '3.12' && github.ref == 'refs/heads/main' + if: matrix.python-version == '3.12' && github.ref == 'refs/heads/0.1.x' uses: JamesIves/github-pages-deploy-action@v4 with: folder: doc/_build/html branch: github.io - target-folder: docs/main + target-folder: docs/0.1.x