Skip to content

Commit 409fa99

Browse files
Redo changes in doc deploy script
1 parent b8dd71a commit 409fa99

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

.github/workflows/build_docs.yaml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,31 @@
11
name: build_documentation
22

33
# build the documentation for a new release
4-
# on:
5-
# release:
6-
# types: created
4+
on:
5+
release:
6+
types: created
77

8-
# for debugging
9-
on: [push, pull_request]
8+
# # for debugging
9+
# on: [push, pull_request]
1010

1111
# security: restrict permissions for CI jobs.
1212
permissions:
1313
contents: read
1414

15+
# NOTE: importing of napari fails with CI and I am not quite sure why
16+
# I tried to adjust it based on the napari CI tests, but that didn't seem to help
17+
18+
# https://github.com/napari/napari/blob/main/.github/workflows/test_comprehensive.yml
1519
jobs:
1620
# Build the documentation and upload the static HTML files as an artifact.
1721
build:
18-
runs-on: ${{ matrix.platform }}
19-
strategy:
20-
matrix:
21-
platform: [ubuntu-latest]
22-
python: ["3.10"]
23-
backend: [pyqt5`]
22+
runs-on: ubuntu-latest
23+
# runs-on: ${{ matrix.platform }}
24+
# strategy:
25+
# matrix:
26+
# platform: [ubuntu-latest]
27+
# python: ["3.10"]
28+
# backend: [pyqt5`]
2429

2530
steps:
2631
- name: Checkout

0 commit comments

Comments
 (0)