doorman/.gitea/workflows/deploy-twilio.yaml
Martin Dimitrov 9a1f4877db
Some checks failed
Build and push Doorman UI / API / docker (push) Failing after 34s
add ci for twilio
2024-10-26 11:13:47 -07:00

26 lines
527 B
YAML

name: Build and push Doorman UI / API
on:
push:
branches: [main]
jobs:
docker:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
name: Check out code
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: install dependencies
run: bun install
- name: Deploy Doorman UI and API
run: bun run deploy-serverless
env:
ACCOUNT_SID: ${{ secrets.ACCOUNT_SID }}
AUTH_TOKEN: ${{ secrets.AUTH_TOKEN }}