Skip to content

Commit

Permalink
Attempt to run deploy action on PR merges
Browse files Browse the repository at this point in the history
  • Loading branch information
dae committed Jan 18, 2025
1 parent b313011 commit d5e1eea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ on:
push:
branches:
- 'main'
pull_request:
branches:
- main
types:
- closed

jobs:
build_site:
Expand Down Expand Up @@ -41,6 +46,7 @@ jobs:
deploy:
needs: build_site
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true || github.ref == 'refs/heads/main'

permissions:
pages: write
Expand Down

0 comments on commit d5e1eea

Please sign in to comment.