Skip to content

Commit

Permalink
feat: #comment removed build/deploy interdependency for doc pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
scrthq committed Jun 10, 2024
1 parent 713e83d commit 7de51ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/docs-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
jobs:
build:
name: Build documentation
needs: []
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref != 'refs/heads/main')

Expand All @@ -34,7 +35,7 @@ jobs:

deploy:
name: Deploy documentation
needs: build
needs: []
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'

Expand Down

0 comments on commit 7de51ae

Please sign in to comment.