diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 1a23db5c..32ef20e1 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -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 @@ -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 @@ -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