diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 40316e4dc..a51e99918 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: PyAnsys documentation style checks - uses: pyansys/actions/doc-style@v3 + uses: pyansys/actions/doc-style@v4 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -90,7 +90,7 @@ jobs: runs-on: ubuntu-latest steps: - name: PyAnsys code style checks - uses: pyansys/actions/code-style@v3 + uses: pyansys/actions/code-style@v4 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -106,7 +106,7 @@ jobs: steps: - name: Build wheelhouse and perform smoke test - uses: pyansys/actions/build-wheelhouse@v3 + uses: pyansys/actions/build-wheelhouse@v4 with: library-name: ${{ env.PACKAGE_NAME }} library-namespace: ${{ env.PACKAGE_NAMESPACE }} @@ -174,7 +174,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Build library source and wheel artifacts - uses: pyansys/actions/build-library@v3 + uses: pyansys/actions/build-library@v4 with: library-name: ${{ env.PACKAGE_NAME }} python-version: ${{ env.MAIN_PYTHON_VERSION }} @@ -186,18 +186,18 @@ jobs: runs-on: ubuntu-latest steps: - name: Release to the private PyPI repository - uses: pyansys/actions/release-pypi-private@v3 + uses: pyansys/actions/release-pypi-private@v4 with: library-name: ${{ env.PACKAGE_NAME }} twine-username: "__token__" twine-token: ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }} - name: Release to GitHub - uses: pyansys/actions/release-github@v3 + uses: pyansys/actions/release-github@v4 with: library-name: ${{ env.PACKAGE_NAME }} - upload_dev_docs: + upload_docs: name: Upload stable documentation (no release) if: github.ref == 'refs/heads/main' runs-on: ubuntu-latest @@ -205,7 +205,7 @@ jobs: steps: # Allowing also to deploy stable docs without releasing - ONLY ON THIS BRANCH - name: Deploy the stable documentation - uses: pyansys/actions/doc-deploy-stable@v3 + uses: pyansys/actions/doc-deploy-stable@v4 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} @@ -218,7 +218,7 @@ jobs: needs: [release] steps: - name: Deploy the stable documentation - uses: pyansys/actions/doc-deploy-stable@v3 + uses: pyansys/actions/doc-deploy-stable@v4 with: cname: ${{ env.DOCUMENTATION_CNAME }} token: ${{ secrets.GITHUB_TOKEN }} diff --git a/doc/source/conf.py b/doc/source/conf.py index 355af3c23..6d257c6d5 100755 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -132,7 +132,7 @@ } html_theme_options = { "switcher": { - "json_url": f"https://{cname}/release/versions.json", + "json_url": f"https://{cname}/versions.json", "version_match": get_version_match(__version__), }, "check_switcher": False,