Skip to content

Build and Deploy to Staging #2

Build and Deploy to Staging

Build and Deploy to Staging #2

name: Build and Deploy to Staging
on:
workflow_dispatch:
inputs:
commit:
description: "Leave blank to use current HEAD, or provide an override commit SHA"
type: string
required: false
jobs:
deploy:
name: Deploy
uses: ./.github/workflows/build_and_deploy_generic.yml
with:
commit: ${{ inputs.commit }}
environment: staging
secrets: inherit