Skip to content

feat: add demo mode, new views, and infrastructure #4

feat: add demo mode, new views, and infrastructure

feat: add demo mode, new views, and infrastructure #4

Workflow file for this run

name: Production Deploy
on:
push:
branches: [main]
tags:
- 'v*'
jobs:
deploy:
name: Build & Deploy Container
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker Image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: false
tags: mobilesql/app:latest
cache-from: type=gha
cache-to: type=gha,mode=max