Merge pull request #190 from gen-mind/develop #6
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 api service | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# on: | |
# push: | |
# tags: | |
# - '*' | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'src/backend/connector/**' | |
- 'src/backend/core/**' | |
- 'src/backend/go.mod' | |
- '.github/workflows/connector-service-build.yml' | |
env: | |
RGNAME: AKS_RG | |
ACRNAME: cognixacr | |
AKSNAME: Cognix_AKS | |
GITHUB_SHA: ${{ github.sha }} | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to ACR | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.ACRNAME }}.azurecr.io | |
username: ${{ secrets.ACR_USERNAME }} | |
password: ${{ secrets.ACR_PASSWORD }} | |
- name: Connector Service Image Docker Build and Push | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./src/backend | |
file: ./src/backend/Dockerfile | |
platforms: linux/amd64 | |
push: true | |
tags: | | |
${{ env.ACRNAME }}.azurecr.io/cognix/connectorservice:${{env.GITHUB_SHA}} | |
build-args: | | |
COGNIX_VERSION=${{env.GITHUB_SHA}} | |
service=connector | |
- name: Login to Azure | |
uses: azure/login@v1 | |
with: | |
creds: ${{ secrets.AZURE_CREDENTIALS }} | |
- name: Get AKS kubeconfig | |
run: az aks get-credentials --resource-group $RGNAME --name $AKSNAME | |
- name: Update Connector server manifest | |
run: | |
sed -ie "s/connectorservice:main/connectorservice:${{env.GITHUB_SHA}}/g" ./src/backend/connector/service-deployment.yaml | |
- name: Deploy Connector server manifests | |
run: | | |
kubectl apply -f ./backend/connector/service-deployment.yaml | |
- name: Delete Connector server pod | |
run: | | |
kubectl rollout restart deploy/connectorservice |