Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

Setup dependabot

Setup dependabot #16

Workflow file for this run

name: Publish
on:
push:
branches: [ main ]
permissions:
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
deno-version: v1.x
- run: bun install
- run: bun run build
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: "dist/"
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- id: deployment
uses: actions/deploy-pages@v4