Merge pull request #7 from bcgov/adr/0003 #27
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: Build and Deploy | |
on: | |
push: | |
branches: | |
- main | |
- test | |
- dev | |
env: | |
HELM_RELEASE_NAME: visitz-api-deployment | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
build_and_push: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
outputs: | |
image_tag: ${{ steps.meta.outputs.tags }} | |
deploy: | |
needs: build_and_push | |
environment: ${{ github.ref_name }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: 'YAML poke: Set image tag' | |
uses: fjogeleit/[email protected] | |
with: | |
valueFile: 'helm/values.yaml' | |
propertyPath: 'image.tag' | |
value: ${{ github.ref_name }} | |
commitChange: false | |
- name: 'YAML poke: Set APS namespace' | |
uses: fjogeleit/[email protected] | |
with: | |
valueFile: 'helm/values.yaml' | |
propertyPath: 'aps.namespace' | |
value: ${{ secrets.APS_NAMESPACE }} | |
commitChange: false | |
- name: Authenticate with OpenShift | |
uses: redhat-actions/oc-login@v1 | |
with: | |
openshift_server_url: ${{ secrets.OPENSHIFT_SERVER }} | |
namespace: ${{ secrets.OPENSHIFT_NAMESPACE }} | |
openshift_token: ${{ secrets.OPENSHIFT_SERVICE_ACCOUNT_TOKEN }} | |
insecure_skip_tls_verify: true | |
- name: Deploy with Helm | |
run: | | |
helm upgrade --install ${{ env.HELM_RELEASE_NAME }} ./helm \ | |
--namespace ${{ secrets.OPENSHIFT_NAMESPACE }} \ | |
--set image.repository=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} \ | |
--set image.tag=${{ needs.build_and_push.outputs.image_tag }} |