deploy #2
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
image_tag: | |
description: 'Docker image tag to deploy' | |
required: true | |
default: 'main' | |
environment: | |
description: 'Environment to deploy too' | |
required: true | |
default: 'sandbox' | |
type: choice | |
options: | |
- sandbox | |
- production | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get GHCR package hash | |
id: get_package_hash | |
run: | | |
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then | |
container_id=$(gh api -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /orgs/MinBZK/packages/container/tad/versions | jq '.[] | select(.metadata.container.tags | contains(["${{ inputs.image_tag }}"])) | .name') | |
echo "container_id=$container_id" >> "$GITHUB_OUTPUT" | |
else | |
container_id=$(gh api -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /orgs/MinBZK/packages/container/tad/versions | jq '.[] | select(.metadata.container.tags | contains(["main"])) | .name') | |
echo "container_id=$container_id" >> "$GITHUB_OUTPUT" | |
fi | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get deploy environment | |
id: get_deploy_env | |
run: | | |
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then | |
echo "env=${{ inputs.environment }}" >> "$GITHUB_OUTPUT" | |
else | |
echo "env=sandbox" >> "$GITHUB_OUTPUT" | |
fi | |
- name: Print deploy hash and environment | |
run: | | |
echo ${{ steps.get_package_hash.outputs.container_id }} | |
echo ${{ steps.get_deploy_env.outputs.env }} | |
- name: check correct name | |
run: | | |
if [ -z "${{steps.get_package_hash.outputs.container_id}}" ]; then | |
echo "Variable is empty. Failing the workflow." | |
exit 1 | |
fi | |
- uses: actions/checkout@v4 | |
with: | |
repository: '${{ github.server_url }}/minbzk/ai-validation-infra' | |
ssh-key: ${{ secrets.DEPLOY_KEY }} | |
ref: main | |
path: ai-validation-infra | |
- name: Make changes to the file | |
run: | | |
cd ai-validation-infra | |
sed -i 's/newTag: .*$/newTag: ${{ steps.get_package_hash.outputs.container_id }}/g' apps/tad/overlays/${{ steps.get_deploy_env.outputs.env }}/kustomization.yaml | |
git add apps/tad/overlays/${{ steps.get_deploy_env.outputs.env }}/kustomization.yaml | |
git commit -m "Update tad overlays ${{ steps.get_deploy_env.outputs.env }} with new tag ${{ steps.get_package_hash.outputs.container_id }}" | |
git push |