Skip to content

Prd environment CD

Prd environment CD #8

Workflow file for this run

name: Prd environment CD
on:
workflow_dispatch:
inputs:
test:
description: 'πŸ”¦ QA lead already approved'
required: true
type: boolean
sign-off:
description: 'πŸ“ Make sure PO sign-off'
required: true
type: boolean
deploy-tag:
description: '🎯 Deploy docker tag'
required: true
type: string
default: c9f6b38c1acd0a7153e42a03b577757262075eb3
jobs:
# ==============
# CD Prd task
# ==============
gitops-prd-versioning:
runs-on: ubuntu-latest
steps:
- name: verify manual input
run: |
{ if [ '${{ inputs.test }}' = 'false' ]; then echo "πŸ”¦ QA lead not approve yet"; exit 1; fi }
{ if [ '${{ inputs.sign-off }}' = 'false' ]; then echo "πŸ“ Need PO sign-off"; exit 1; fi }
- name: checkout
uses: actions/checkout@v3
- name: config git
run: |
git --version
git config user.name "robot"
git config user.email "[email protected]"
- name: change image tag
run: |
sed -i -E "s/ghcr.io\/kbtg-kampus-classnest-se-java\/workshopb2-group-1.*$/ghcr.io\/kbtg-kampus-classnest-se-java\/workshopb2-group-1:${{ inputs.deploy-tag }}/" infra/gitops/prod/deployment.yml
git add infra/gitops/prod/deployment.yml
git commit -m "[skip actions] πŸ€– change prd docker image version to ${{ inputs.deploy-tag }}"
git pull --rebase
git push