| 12345678910111213141516171819202122232425 |
- name: deploy
- on:
- push:
- branches:
- - dontlook
- workflow_dispatch:
- concurrency: ${{ github.workflow }}-${{ github.ref }}
- jobs:
- deploy:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - uses: oven-sh/setup-bun@v1
- with:
- bun-version: latest
- - run: bun install
- - run: bun sst deploy --stage=dev
- env:
- CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|