Skip to content

Deploy production

Deploy production #1

name: Deploy production
on:
workflow_dispatch:
inputs:
tag:
description: 'Release tag being deployed, such as v1.2.3'
required: true
type: string
permissions:
contents: read
jobs:
deploy:
name: Deploy to production
uses: ./.github/workflows/_deploy-environment.yml
with:
tag: ${{ inputs.tag }}
environment: production
secrets: inherit
health-check:
name: Health check production
needs: deploy
uses: ./.github/workflows/deploy-health-check.yml
with:
tag: ${{ inputs.tag }}
environment: production
profile: cloud
secrets: inherit