Skip to content

fix banner

fix banner #6

Workflow file for this run

name: GitHub Pages
on:
push:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: |
bun i
bun run build
- uses: actions/upload-pages-artifact@v3
with:
path: dist
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}]
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v4
id: deployment