We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3491a58 commit 40efe32Copy full SHA for 40efe32
.github/workflows/deploy-jekyll.yml
@@ -2,7 +2,7 @@ name: Deploy Jekyll site to GitHub Pages
2
3
on:
4
push:
5
- branches: [ main ]
+ branches: [ main, alistair/jekyll ]
6
paths: [ 'jekyll-site/**' ]
7
pull_request:
8
branches: [ main ]
@@ -58,7 +58,7 @@ jobs:
58
url: ${{ steps.deployment.outputs.page_url }}
59
runs-on: ubuntu-latest
60
needs: build
61
- if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
+ if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alistair/jekyll') && github.event_name != 'pull_request'
62
steps:
63
- name: Deploy to GitHub Pages
64
id: deployment
0 commit comments