Skip to content

Commit

Permalink
Bump pyansys/actions from 3 to 4 (#111)
Browse files Browse the repository at this point in the history
* Bump pyansys/actions from 3 to 4

Bumps [pyansys/actions](https://github.com/pyansys/actions) from 3 to 4.
- [Release notes](https://github.com/pyansys/actions/releases)
- [Commits](ansys/actions@v3...v4)

---
updated-dependencies:
- dependency-name: pyansys/actions
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update conf.py

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and RobPasMue committed Mar 7, 2023
1 parent c01c1f1 commit 42d8f54
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down Expand Up @@ -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 }}

Expand All @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand All @@ -186,26 +186,26 @@ 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
needs: [package]
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 }}
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 42d8f54

Please sign in to comment.