Skip to content

Commit

Permalink
Rename pyansys/actions as ansys/actions in workflows. (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxJPRey authored Jun 2, 2023
1 parent 2fba7d7 commit 39e95f0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Running documentation style checks"
uses: pyansys/actions/doc-style@v4
uses: ansys/actions/doc-style@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -37,7 +37,7 @@ jobs:
uses: actions/checkout@v3

- name: "Set up Python"
uses: pyansys/actions/_setup-python@v4
uses: ansys/actions/_setup-python@v4
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
use-cache: true
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Build library source and wheel artifacts"
uses: pyansys/actions/build-library@v4
uses: ansys/actions/build-library@v4
with:
library-name: "pytwin"
python-version: ${{ env.MAIN_PYTHON_VERSION }}
Expand All @@ -89,7 +89,7 @@ jobs:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Run pytest
uses: pyansys/actions/tests-pytest@v4
uses: ansys/actions/tests-pytest@v4
with:
python-version: ${{ matrix.python-version }}
pytest-extra-args: "--cov=pytwin --cov-report=term --cov-report=xml:.cov/coverage.xml --cov-report=html:.cov/html"
Expand All @@ -111,7 +111,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Validate third party licenses"
uses: pyansys/actions/check-licenses@v4
uses: ansys/actions/check-licenses@v4
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

Expand All @@ -122,7 +122,7 @@ jobs:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
steps:
- name: "Release to the public PyPI repository"
uses: pyansys/actions/release-pypi-public@v4
uses: ansys/actions/release-pypi-public@v4
with:
library-name: "pytwin"
twine-username: "__token__"
Expand All @@ -136,7 +136,7 @@ jobs:
if: github.ref == 'refs/heads/main'
steps:
- name: "Deploy the latest documentation"
uses: pyansys/actions/doc-deploy-dev@v4
uses: ansys/actions/doc-deploy-dev@v4
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -148,7 +148,7 @@ jobs:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
steps:
- name: "Deploy the stable documentation"
uses: pyansys/actions/doc-deploy-stable@v4
uses: ansys/actions/doc-deploy-stable@v4
with:
cname: ${{ env.DOCUMENTATION_CNAME }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 39e95f0

Please sign in to comment.