Skip to content

Commit 69e8651

Browse files
committed
fix(PyPi): redirection issue while publishing
1 parent 9d65b52 commit 69e8651

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
with:
105105
user: ${{ secrets.PYPI_USER }}
106106
password: ${{ secrets.PYPI_PASSWORD }}
107-
repository_url: https://upload.pypi.org/legacy
107+
repository_url: https://upload.pypi.org/legacy/
108108

109109
documentation:
110110
runs-on: ubuntu-latest
@@ -117,12 +117,12 @@ jobs:
117117
run: pip install pdoc
118118

119119
- name: generate pydoc
120-
run: pdoc --html ibm_scc
120+
run: pdoc ibm_scc -o html
121121

122122
- name: deploy gopages to gh-pages
123123
uses: crazy-max/ghaction-github-pages@v1
124124
with:
125125
target_branch: gh-pages
126-
build_dir: html/ibm_scc
126+
build_dir: html
127127
env:
128128
GITHUB_TOKEN: ${{ secrets.ADMIN_TOKEN }}

0 commit comments

Comments
 (0)