Initial portfolio scaffold: Hono + HTMX + TailwindCSS

This commit is contained in:
Sudeste
2026-04-12 19:37:06 -03:00
commit 9ec85f92cf
14 changed files with 386 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci
- run: npx wrangler deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}