Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,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 @@ -49,7 +49,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 All @@ -65,7 +65,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 All @@ -86,7 +86,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 @@ -318,7 +318,7 @@ jobs:
# docker run -d --name dpfserver -p ${{ env.DPF_PORT }}:50052 ghcr.io/pyansys/dpf-core:22.2dev && echo "DPF Server active on port ${{ env.DPF_PORT }}."

- name: "Run Ansys documentation building action"
uses: pyansys/actions/doc-build@v3
uses: pyansys/actions/doc-build@v4
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
checkout: false
Expand All @@ -332,7 +332,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 @@ -346,7 +346,7 @@ jobs:
needs: [package]
steps:
- name: "Deploy the latest documentation"
uses: pyansys/actions/doc-deploy-dev@v3
uses: pyansys/actions/doc-deploy-dev@v4
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -360,7 +360,7 @@ jobs:
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__"
Expand All @@ -375,7 +375,7 @@ jobs:
# twine-token: ${{ secrets.PYPI_TOKEN }}

- name: "Release to GitHub"
uses: pyansys/actions/release-github@v3
uses: pyansys/actions/release-github@v4
with:
library-name: ${{ env.PACKAGE_NAME }}

Expand All @@ -388,7 +388,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