add automated deploy
/ release (push) Failing after 45s

This commit is contained in:
2025-12-19 08:57:27 -08:00
parent 84116dd409
commit 01ac5d5db4
+17
View File
@@ -0,0 +1,17 @@
on:
push:
tags:
- "*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: latest
- run: npm ci
- run: npm run deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}