deploy.yml 450 B

12345678910111213141516171819202122232425
  1. name: deploy
  2. on:
  3. push:
  4. branches:
  5. - dontlook
  6. workflow_dispatch:
  7. concurrency: ${{ github.workflow }}-${{ github.ref }}
  8. jobs:
  9. deploy:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v3
  13. - uses: oven-sh/setup-bun@v1
  14. with:
  15. bun-version: latest
  16. - run: bun install
  17. - run: bun sst deploy --stage=dev
  18. env:
  19. CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}