Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: The priority of workflow. #208

Merged
merged 3 commits into from
Feb 22, 2023
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
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