File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 6
6
- main
7
7
workflow_dispatch :
8
8
9
+ # NOTE: If you modify this file to install a package with pip or apt, please
10
+ # verify if we need the same package added to our readthedocs build.
9
11
jobs :
10
12
# Ref: https://stackoverflow.com/questions/57989790/using-github-actions-to-publish-documentation
11
13
deploy :
12
14
runs-on : ubuntu-latest
13
15
steps :
14
16
- uses : actions/checkout@v3
15
17
18
+ - name : Install apt packages
19
+ run : |
20
+ sudo apt-get install -y graphviz
21
+
16
22
- name : Set up Python
17
23
uses : actions/setup-python@v4
18
24
with :
Original file line number Diff line number Diff line change 1
1
version : 2
2
2
3
+ # NOTE: If you modify this file to install a package with pip or apt, please
4
+ # verify if we need the same package added to our CI.
3
5
build :
4
6
os : ubuntu-20.04
5
7
tools :
Original file line number Diff line number Diff line change @@ -111,6 +111,13 @@ source venv/bin/activate
111
111
# Open <http://localhost:8000/> in your browser
112
112
```
113
113
114
+ > NOTE: When you modify the packages installed with apt or pip, please verify
115
+ > if the change needs to be applied to either or to both of CI and readthedocs.
116
+ > ReadTheDocs builds and deploys previews. CI builds and deploys production
117
+ > (GitHub Actions). Failing to update both may result in previews generated
118
+ > correctly, but failure to deploy the production version after the pull request
119
+ > gets merged.
120
+
114
121
## Other Resources
115
122
116
123
General discussion of [ Common Workflow Language] [ cwl-site ] project
You can’t perform that action at this time.
0 commit comments