From 69e8651721f9efa15a89d4955b8ea7c39e299523 Mon Sep 17 00:00:00 2001 From: Gaurav Goswami Date: Fri, 18 Jun 2021 18:30:57 +0530 Subject: [PATCH] fix(PyPi): redirection issue while publishing --- .github/workflows/main.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index c052e12..7007a48 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -104,7 +104,7 @@ jobs: with: user: ${{ secrets.PYPI_USER }} password: ${{ secrets.PYPI_PASSWORD }} - repository_url: https://upload.pypi.org/legacy + repository_url: https://upload.pypi.org/legacy/ documentation: runs-on: ubuntu-latest @@ -117,12 +117,12 @@ jobs: run: pip install pdoc - name: generate pydoc - run: pdoc --html ibm_scc + run: pdoc ibm_scc -o html - name: deploy gopages to gh-pages uses: crazy-max/ghaction-github-pages@v1 with: target_branch: gh-pages - build_dir: html/ibm_scc + build_dir: html env: GITHUB_TOKEN: ${{ secrets.ADMIN_TOKEN }} \ No newline at end of file