Skip to content

Rename cache fields and make them optional #33

Rename cache fields and make them optional

Rename cache fields and make them optional #33

Workflow file for this run

name: Deploy
on:
push:
branches:
- dev
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run validation script
run: bun scripts/validate
- name: Generate data
run: bun scripts/generate
- run: bun sst deploy --stage=dev
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}