Skip to content

Commit

Permalink
Merge branch 'main' into linkcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
santisoler authored Dec 4, 2024
2 parents ba5d8ac + b2cecdb commit e476dc3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
name: EM Website Build

on:
pull_request:
push:
branches:
- '*'
pull_request:
branches: [ main ]
- main

jobs:
test:
Expand Down Expand Up @@ -53,6 +52,10 @@ jobs:
python _ext/copy_images.py
- name: GitHub Pages
# Only deploy if the event that triggered was a push to main
# (only pushes to main triggers builds, see 'on' condition in the
# beginning of the file)
if: success() && github.event_name == 'push'
uses: crazy-max/ghaction-github-pages@v2.5.0
with:
build_dir: _build/html
Expand Down

0 comments on commit e476dc3

Please sign in to comment.