Skip to content

Commit 4749c0d

Browse files
Fix: The priority of workflow. (#208)
* Fix: The priority of workflow * Fix :change the private pypi release * Fix: change the actions
1 parent 807b335 commit 4749c0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci_cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
name: Doc dev version deploy
5454
if: ${{ github.ref == 'refs/heads/main' }}
5555
runs-on: ubuntu-latest
56-
needs: doc-build
56+
needs: build-library
5757
steps:
5858
- name: "Deploy developers documentation"
5959
uses: pyansys/actions/doc-deploy-dev@v3
@@ -65,7 +65,7 @@ jobs:
6565
name: Doc stable version deploy
6666
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
6767
runs-on: ubuntu-latest
68-
needs: doc-deploy-development
68+
needs: release
6969
steps:
7070
- name: "Deploy stable documentation"
7171
uses: pyansys/actions/doc-deploy-stable@v3
@@ -77,7 +77,7 @@ jobs:
7777
build-library:
7878
name: "Build library"
7979
runs-on: ubuntu-latest
80-
needs: doc-deploy-stable
80+
needs: [doc-build, code-style]
8181
steps:
8282
- name: "Build library source and wheel artifacts"
8383
uses: pyansys/actions/build-library@v3

0 commit comments

Comments
 (0)