mirror of
https://github.com/tonytins/tomas.git
synced 2025-03-15 12:21:23 +00:00
27 lines
486 B
YAML
27 lines
486 B
YAML
|
name: Build
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "0 0 * * 0"
|
||
|
push:
|
||
|
branches: [main, publish]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
timeout-minutes: 15
|
||
|
continue-on-error: true
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [windows-latest, ubuntu-latest, macOS-latest]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Setup
|
||
|
uses: peaceiris/actions-mdbook@v1
|
||
|
with:
|
||
|
mdbook-version: "latest"
|
||
|
|
||
|
- name: Build
|
||
|
run: mdbook build ./docs
|