Skip to content

add thermalpad with custom dimensions example (#81) #14

add thermalpad with custom dimensions example (#81)

add thermalpad with custom dimensions example (#81) #14

name: Deploy Gallery
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Generate Gallery
run: bun run generate-gallery
- name: Rename gallery.html to index.html
run: mv public/gallery.html public/index.html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public