Skip to content
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