File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 7
7
# runs only when a release is published, not on drafts
8
8
on :
9
9
workflow_dispatch :
10
-
10
+
11
11
12
12
jobs :
13
13
deploy-packges-and-generate-documentation :
Original file line number Diff line number Diff line change @@ -81,17 +81,17 @@ jobs:
81
81
82
82
- name : Build package
83
83
run : |
84
- python -m build --no-isolation --outdir dist/
84
+ python -m build --sdist -- no-isolation --outdir dist/
85
85
86
86
- name : Generate documentation
87
87
run : |
88
88
sudo apt-get install doxygen graphviz
89
89
bash -ex generate-docs.sh "${{ secrets.GITHUB_TOKEN }}" "gh-pages"
90
90
91
- - name : Publish package
92
- uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
91
+ - name : Publish package to pypi.org
92
+ uses : pypa/gh-action-pypi-publish@release/v1
93
93
with :
94
94
user : __token__
95
95
password : ${{ secrets.PYPI_API_TOKEN }}
96
96
verbose : true
97
- packages-dir : dist/
97
+ packages_dir : dist/
You can’t perform that action at this time.
0 commit comments