Skip to content

Fixed two bugs in makelab-logo-morpher.js #11

Fixed two bugs in makelab-logo-morpher.js

Fixed two bugs in makelab-logo-morpher.js #11

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