1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00
chota/.github/workflows/jekyll.yml

17 lines
416 B
YAML
Raw Normal View History

2019-08-18 18:42:20 +03:00
name: Jekyll site CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build the site in the jekyll/builder container
run: |
docker run \
2019-08-18 18:47:48 +03:00
-v ${{ github.workspace }}/docs:/srv/jekyll -v ${{ github.workspace }}/docs/_site:/srv/jekyll/_site \
2019-08-18 18:58:14 +03:00
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"