Clear name conflict

This commit is contained in:
Yoann Chaudet
2022-09-16 15:05:57 -07:00
parent 941a823212
commit cd26daf9c2
2 changed files with 0 additions and 0 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"