Skip to content

wip

wip #1

Workflow file for this run

name: pages
on: push
jobs:
build:
runs-on: ubuntu-latest
container: alpine
steps:
- uses: actions/checkout@v4
- name: Build
run: |
apk add mdbook
cd pizero
mdbook build
- name: Setup git config
run: |
git config user.name bot
git config user.email "<>"
- name: Commit
run: |
if git commit -am 'bot: update pages'; then
git push origin HEAD:"${{ github.ref }}"
fi