Skip to content

feat: release-please refactor #1

feat: release-please refactor

feat: release-please refactor #1

Workflow file for this run

name: Deploy Prod

Check failure on line 1 in .github/workflows/prod.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/prod.yml

Invalid workflow file

`on.workflow_run` does not reference any workflows. See https://docs.github.com/actions/learn-github-actions/events-that-trigger-workflows#workflow_run for more information
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 }}' \