Skip to content

fix: serve firmware binaries from GitHub Pages with correct paths #9

fix: serve firmware binaries from GitHub Pages with correct paths

fix: serve firmware binaries from GitHub Pages with correct paths #9

Workflow file for this run

name: Deploy Website to GitHub Pages
on:
push:
branches: [master]
paths:
- 'website/**'
- '.github/workflows/deploy-site.yml'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install, build, and upload
uses: withastro/action@v3
with:
path: ./website
node-version: 22
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4