feat: release-please refactor #1
Workflow file for this run
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: Deploy Prod | ||
Check failure on line 1 in .github/workflows/prod.yml GitHub Actions / .github/workflows/prod.ymlInvalid workflow file
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
description: "Image tag to deploy" | ||
required: false | ||
type: string | ||
default: "prod" | ||
workflow_run: | ||
inputs: | ||
tag: | ||
description: "Image tag to deploy" | ||
required: false | ||
type: string | ||
default: "prod" | ||
concurrency: | ||
group: ${{ github.workflow }} | ||
cancel-in-progress: true | ||
jobs: | ||
deploys-prod: | ||
name: Deploys (prod) | ||
uses: ./.github/workflows/deploy.yml | ||
secrets: inherit | ||
with: | ||
autoscaling: true | ||
environment: prod | ||
tag: ${{ inputs.tag }} | ||
release: prod | ||
params: | | ||
--set-string global.license='c28f0c' \ | ||
--set-string global.zone='prod' \ | ||
--set-string global.vault.role='prod' \ | ||
--set-string global.vault.zone='prod' \ | ||
--set-string global.pr_num='${{ inputs.tag }}' \ |