Skip to content

Release v18.2.12

Release v18.2.12 #82

Workflow file for this run

name: Deploy to prod
on:
push:
tags:
- 'v*'
workflow_dispatch:
inputs:
image-tag-suffix:
description: "Additional tag suffix for the Docker image (optional)"
required: false
type: string
jobs:
deploy-prod:
name: Deploy to prod
uses: ./.github/workflows/deploy.yml
with:
environment: prod
image-tag-suffix: ${{ inputs.image-tag-suffix || '' }}
secrets: inherit