mirror of
https://github.com/privacy-scaling-explorations/p0tion.git
synced 2026-04-21 03:00:07 -04:00
23 lines
476 B
YAML
23 lines
476 B
YAML
name: Deploy to Production
|
|
|
|
on:
|
|
pull_request:
|
|
branches: main
|
|
push:
|
|
branches: main
|
|
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
deploy-production:
|
|
uses: ./.github/workflows/firebase-deploy-production.yaml
|
|
secrets: inherit
|
|
with:
|
|
environment: production
|
|
branch: ${{ github.ref }}
|
|
firebase_project: ${{ vars.FIREBASE_PROJECT_PRODUCTION }}
|