Build and Deploy to Review #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy to Review | |
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: review | |
secrets: inherit |