Updating GHES workflows

This commit is contained in:
GitHub Actions
2022-09-21 15:06:01 +00:00
parent ce61da64bd
commit 9038abce30
6 changed files with 2 additions and 61 deletions
+20
View File
@@ -0,0 +1,20 @@
name: Jekyll site CI
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future"