Skip to content

Merge branch 'main' of https://github.com/makeabilitylab/js #6

Merge branch 'main' of https://github.com/makeabilitylab/js

Merge branch 'main' of https://github.com/makeabilitylab/js #6

Workflow file for this run

name: Build Gallery
on:
push:
branches: [main]
jobs:
build-gallery:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Generate gallery index
run: python scripts/build_gallery.py
- name: Commit gallery
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add index.html
git diff --staged --quiet || git commit -m "chore: rebuild gallery index"
git push