Deploy manuelt #4
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 manuelt | |
on: | |
workflow_dispatch: | |
inputs: | |
image: | |
required: true | |
type: string | |
description: 'Image tag to deploy (example 2023.03.10.080433-f821119)' | |
environment: | |
required: true | |
type: choice | |
description: 'The environment to deployed to (dev|prod)' | |
options: | |
- dev | |
- prod | |
jobs: | |
deploy: | |
name: Deploy dev | |
uses: navikt/fp-gha-workflows/.github/workflows/deploy.yml@main | |
with: | |
gar: true | |
image: ${{ inputs.image }} | |
cluster: ${{ inputs.environment }}-fss | |
secrets: inherit |