Skip to content

Commit

Permalink
fix: Only deploy web pages if the test and release workflow finished …
Browse files Browse the repository at this point in the history
…successfully
  • Loading branch information
neilmunday committed Jun 12, 2024
1 parent 03837c0 commit 3a1ec98
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
# Build job
build:
runs-on: ubuntu-latest
# only run the job if the workflow executed OK
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 3a1ec98

Please sign in to comment.