Skip to content

Commit

Permalink
Add triggers, deploy artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
pfirpfel committed Nov 28, 2023
1 parent 9af0794 commit edcc665
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build-page.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Build page

on: pull_request
on:
pull_request:
push:
schedule:
- cron: '0 23 * * 5' # At 23:00 on Friday

jobs:
build:
Expand All @@ -17,3 +21,9 @@ jobs:

- name: Build
run: bundle exec jekyll build

- name: Upload pages artifact
uses: actions/upload-pages-artifact@v2
if: github.ref == 'refs/heads/main'
with:
path: _site/

0 comments on commit edcc665

Please sign in to comment.