Skip to content

Migrate to GitHub Actions #2

Migrate to GitHub Actions

Migrate to GitHub Actions #2

Workflow file for this run

name: Update Site
on:
push:
branches: [master, actions-test]
jobs:
format-code:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
with:
tool: just@1.16.0
- name: Generate XML from Asciidoc
run: just generate
# Other steps that change files in the repository
# Commit all changed files back to the repository
- uses: stefanzweifel/git-auto-commit-action@v5