Skip to content

Commit

Permalink
Fix: The priority of workflow. (#208)
Browse files Browse the repository at this point in the history
* Fix: The priority of workflow

* Fix :change the private pypi release

* Fix: change the actions
  • Loading branch information
Revathyvenugopal162 authored Feb 22, 2023
1 parent 807b335 commit 4749c0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
name: Doc dev version deploy
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
needs: doc-build
needs: build-library
steps:
- name: "Deploy developers documentation"
uses: pyansys/actions/doc-deploy-dev@v3
Expand All @@ -65,7 +65,7 @@ jobs:
name: Doc stable version deploy
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
runs-on: ubuntu-latest
needs: doc-deploy-development
needs: release
steps:
- name: "Deploy stable documentation"
uses: pyansys/actions/doc-deploy-stable@v3
Expand All @@ -77,7 +77,7 @@ jobs:
build-library:
name: "Build library"
runs-on: ubuntu-latest
needs: doc-deploy-stable
needs: [doc-build, code-style]
steps:
- name: "Build library source and wheel artifacts"
uses: pyansys/actions/build-library@v3
Expand Down

0 comments on commit 4749c0d

Please sign in to comment.