Skip to content

feat: add new gh pages bundle #9

feat: add new gh pages bundle

feat: add new gh pages bundle #9

Workflow file for this run

name: Deploy to gh pages
on:
workflow_dispatch: {}
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '.static'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4