Skip to content

refactor: clear tech dept #4

refactor: clear tech dept

refactor: clear tech dept #4

name: Publish explorer frontend to GitHub Pages
on:
workflow_dispatch:
push:
branches: [ copilot/create-database-viewer-tool] # or main
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
# If you need a build step (npm, make, etc.), add it here.
# For example:
# - name: Build frontend
# run: |
# cd tools/board_compare/frontend
# npm ci
# npm run build
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: tools/board_compare/frontend
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4