Skip to content

fix fates with data from teamcraft github repo #288

fix fates with data from teamcraft github repo

fix fates with data from teamcraft github repo #288

Workflow file for this run

name: Jekyll site CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jvconseil/jekyll-docker:latest /bin/bash -c "gem install bundler:2.5.4 && chmod -R 777 /srv/jekyll && jekyll build --future --config _config.yml,_githubconfig.yml"
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: _site
force_orphan: true
commit_message: ${{ github.event.head_commit.message }}