File tree Expand file tree Collapse file tree 6 files changed +1226
-1492
lines changed Expand file tree Collapse file tree 6 files changed +1226
-1492
lines changed Original file line number Diff line number Diff line change 1
1
# Changes here will be overwritten by Copier
2
- _commit : 9642da9
2
+ _commit : f2aa384
3
3
_src_path : https://github.com/python-project-templates/base.git
4
4
add_docs : true
5
5
add_extension : jupyter
Original file line number Diff line number Diff line change
1
+ name : Publish Docs
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ workflow_dispatch :
8
+ permissions :
9
+ contents : write
10
+ jobs :
11
+ docs :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v4
15
+ - uses : actions-ext/python/setup@main
16
+ - uses : actions-ext/node/setup@main
17
+ - run : uv pip install .
18
+ - run : uv pip install yardang
19
+ - run : yardang build
20
+ - uses : peaceiris/actions-gh-pages@v4
21
+ with :
22
+ publish_branch : gh-pages
23
+ github_token : ${{ secrets.GITHUB_TOKEN }}
24
+ publish_dir : docs/html
Original file line number Diff line number Diff line change 1
- name : Publish Docs
1
+ name : Publish Wiki
2
2
3
3
on :
4
4
push :
Original file line number Diff line number Diff line change @@ -139,10 +139,13 @@ js/dist
139
139
js /lib
140
140
js /node_modules
141
141
js /* .tgz
142
+ python_template_jupyter /extension
142
143
143
144
# Jupyter
144
145
.ipynb_checkpoints
145
146
.autoversion
147
+ ! python_template_jupyter /extension /python_template_jupyter.json
148
+ ! python_template_jupyter /extension /install.json
146
149
python_template_jupyter /nbextension
147
150
python_template_jupyter /labextension
148
151
You can’t perform that action at this time.
0 commit comments