From 39e95f052e6c8ed1be4462b748f482469dd4abb9 Mon Sep 17 00:00:00 2001 From: Maxime Rey <87315832+MaxJPRey@users.noreply.github.com> Date: Fri, 2 Jun 2023 19:28:43 +0200 Subject: [PATCH] Rename pyansys/actions as ansys/actions in workflows. (#92) --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62fa2bdb..bf4dcdfc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} @@ -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 @@ -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 }} @@ -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" @@ -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 }} @@ -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__" @@ -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 }} @@ -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 }}