Skip to content

04.Deploy Dispatch

04.Deploy Dispatch #26

name: 04.Deploy Dispatch
on:
workflow_dispatch:
inputs:
environment:
description: Environment to deploy
type: environment
required: true
imageTag:
description: Image Tag Version (ghcr.io/bcgov/pltsvc:<imageTag>)
type: string
required: true
jobs:
deploy:
runs-on: ubuntu-22.04
timeout-minutes: 5
permissions:
contents: read
environment:
name: ${{ inputs.environment }}
steps:
- uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6
- uses: actions/checkout@b32f140b0c872d58512e0a66172253c302617b90
with:
ref: main
- name: Authenticate and set context
uses: redhat-actions/oc-login@9b79eb6d8ec51bce42cb4e77f0a174fc80cf3cb9
with:
openshift_server_url: ${{ secrets.OPENSHIFT_SERVER }}
openshift_token: ${{ secrets.OPENSHIFT_TOKEN }}
namespace: ${{ vars.OPENSHIFT_NAMESPACE }}
insecure_skip_tls_verify: true
- name: Deploy apps with Helm chart
run: |
make upgrade \
NAMESPACE=${{ vars.OPENSHIFT_NAMESPACE }} \
IMAGE_TAG=${{ inputs.imageTag }}
working-directory: ./helm/main