From 766863b03ac46fa25e27d5b943074b620bd016a6 Mon Sep 17 00:00:00 2001 From: Peter Petrakovic Date: Sat, 1 May 2021 08:56:36 +0200 Subject: [PATCH] pepe --- .github/workflows/pepe.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/pepe.yml diff --git a/.github/workflows/pepe.yml b/.github/workflows/pepe.yml new file mode 100644 index 0000000..fce0548 --- /dev/null +++ b/.github/workflows/pepe.yml @@ -0,0 +1,20 @@ +name: Jekyll site CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - 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"