Skip to content

docs: update project documentation and policies #13

docs: update project documentation and policies

docs: update project documentation and policies #13

Workflow file for this run

name: Production Deploy
on:
push:
branches: [main]
tags:
- 'v*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
deploy:
name: Build & Validate 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@v6
with:
context: .
file: ./Dockerfile
push: false
tags: mobilesql/app:latest
cache-from: type=gha
cache-to: type=gha,mode=max