Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
python-version: "3.10"

- name: Configure GitHub Pages
if: github.event_name == 'push'
# if: github.event_name == 'push'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We of course don't want this generally

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have temporarily allowed all branches:

Image

Then we can make it work and then convert to only main again

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We of course don't want this generally

Yes, this is for debugging

uses: actions/configure-pages@v5

- name: Install dependencies
Expand All @@ -56,13 +56,13 @@ jobs:
run: make build-docs

- name: Upload docs artifact
if: github.event_name == 'push'
# if: github.event_name == 'push'
uses: actions/upload-pages-artifact@v4
with:
path: site

deploy:
if: github.event_name == 'push'
# if: github.event_name == 'push'
needs: build
runs-on: ubuntu-latest
permissions:
Expand Down
Loading