doorman/.gitea/workflows/deploy-twilio.yaml
Martin Dimitrov 03de59791c
Some checks failed
Build and push Doorman UI / API / docker (push) Failing after 22s
fix script
2024-10-26 11:16:08 -07:00

26 lines
541 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.TWILIO_ACCOUNT_SID }}
AUTH_TOKEN: ${{ secrets.TWILIO_AUTH_TOKEN }}