File tree Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Expand file tree Collapse file tree 2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : Upload to PYPI
2
2
3
3
on :
4
+ workflow_dispatch :
4
5
release :
5
6
types : [created]
6
7
20
21
- name : Build package
21
22
run : poetry build
22
23
- name : Publish to PyPI
23
- uses : pypa/gh-action-pypi-publish@master
24
+ uses : pypa/gh-action-pypi-publish@release/v1
24
25
with :
25
- password : ${{ secrets.PYPI_API_TOKEN }}
26
+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change
1
+ # .readthedocs.yaml
2
+ # Read the Docs configuration file
3
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4
+
5
+ # Required
6
+ version : 2
7
+
8
+ # Set the version of Python and other tools you might need
9
+ build :
10
+ os : ubuntu-22.04
11
+ tools :
12
+ python : " 3.10"
13
+
14
+ # Build documentation in the docs/ directory with Sphinx
15
+ sphinx :
16
+ configuration : docs/conf.py
17
+
18
+ python :
19
+ install :
20
+ - requirements : docs/requirements.txt
You can’t perform that action at this time.
0 commit comments