Skip to content

Build workflow systems #3025

Build workflow systems

Build workflow systems #3025

name: Build workflow systems
on:
schedule:
- cron: "0 0,8,16 * * *"
push:
branches:
- main
jobs:
github-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Generate workflows pages
env:
JEKYLL_TOKEN: ${{ secrets.JEKYLL_PAT }}
run: |
rm -rf _systems/*
python3 scripts/process_systems.py
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
restore-keys: |
${{ runner.os }}-gems-
- uses: helaili/jekyll-action@v2
with:
token: ${{ secrets.JEKYLL_PAT }}
target_branch: 'gh-pages'