soringumeni1 triggered deploy to DEV pipeline #38
This file contains hidden or 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 to DEV | |
| run-name: ${{ github.actor }} triggered deploy to DEV pipeline | |
| on: | |
| push: | |
| branches: | |
| - "dev" | |
| env: | |
| PROJECT_ID: "${{ secrets.PROJECT_ID }}" | |
| GAR_LOCATION: "${{ secrets.GAR_LOCATION }}" | |
| SLACK_WEBHOOK_URL: "${{ secrets.SLACK_WEBHOOK_URL}}" | |
| SLACK_CHANNEL: "${{ secrets.GITHUBACTIONS_SLACK_CHANNEL }}" | |
| jobs: | |
| build: | |
| permissions: | |
| contents: write | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| environment: dev | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: dev | |
| - name: Read BASE IMAGE VERSION file | |
| id: getappversion | |
| run: echo "appversion=$(sed -n 's/^MEDCAT_BASE_IMAGE_VERSION=\(.*\)/\1/p' < medcat_versions.yml)" >> $GITHUB_OUTPUT | |
| - name: Read MEDCAT VERSION | |
| id: getversion | |
| run: | | |
| sed -n 's/^appVersion:\(.*\)/\1/p' < chart/gateway-medcat/Chart.yaml > version | |
| echo "version=$(sed '/.*\"\(.*\)\".*/ s//\1/g' version)" >> $GITHUB_OUTPUT | |
| - name: Google Auth | |
| id: auth | |
| uses: "google-github-actions/auth@v2" | |
| with: | |
| token_format: "access_token" | |
| workload_identity_provider: "${{ secrets.WIF_PROVIDER }}" | |
| service_account: "${{ secrets.WIF_SERVICE_ACCOUNT }}" | |
| - name: "Set up Cloud SDK" | |
| uses: "google-github-actions/setup-gcloud@v1" | |
| with: | |
| version: ">= 363.0.0" | |
| - name: "Use gcloud CLI to download the models from google storage bucket" | |
| run: gsutil -m cp -r '${{ secrets.BUCKET_PATH }}' . | |
| - name: Login to GAR | |
| id: garlogin | |
| uses: docker/login-action@v2 | |
| with: | |
| registry: ${{ env.GAR_LOCATION }}-docker.pkg.dev/${{ env.PROJECT_ID }}/${{ env.PROJECT_ID }} | |
| username: oauth2accesstoken | |
| password: ${{ steps.auth.outputs.access_token }} | |
| - name: Build and Push Container | |
| id: build | |
| shell: bash | |
| env: | |
| GAR_LOCATION: ${{ secrets.GAR_LOCATION }} | |
| PROJECT_ID: ${{ secrets.PROJECT_ID }} | |
| GAR_NAME: ${{ secrets.GAR_NAME }} | |
| run: |- | |
| docker build -t '${{ env.GAR_LOCATION }}'-docker.pkg.dev/'${{ env.PROJECT_ID }}'/'${{ env.GAR_NAME }}'/${{ steps.getversion.outputs.version }}:${{ github.sha }} -t '${{ env.GAR_LOCATION }}'-docker.pkg.dev/'${{ env.PROJECT_ID }}'/'${{ env.GAR_NAME }}'/${{ steps.getversion.outputs.version }}:latest --build-arg MEDCAT_BASE_IMAGE_VERSION=${{ steps.getappversion.outputs.appversion }} ./ | |
| docker push --all-tags '${{ env.GAR_LOCATION }}'-docker.pkg.dev/'${{ env.PROJECT_ID }}'/'${{ env.GAR_NAME }}'/${{ steps.getversion.outputs.version }} | |
| deploy: | |
| needs: build | |
| permissions: | |
| contents: write | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| environment: dev | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: dev | |
| - name: Google Auth | |
| id: auth | |
| uses: "google-github-actions/auth@v0" | |
| with: | |
| token_format: "access_token" | |
| workload_identity_provider: "${{ secrets.WIF_PROVIDER }}" | |
| service_account: "${{ secrets.WIF_SERVICE_ACCOUNT }}" | |
| - name: Read MEDCAT VERSION | |
| id: getversion | |
| run: | | |
| sed -n 's/^appVersion:\(.*\)/\1/p' < chart/gateway-medcat/Chart.yaml > version | |
| echo "version=$(sed '/.*\"\(.*\)\".*/ s//\1/g' version)" >> $GITHUB_OUTPUT | |
| - name: Deploy to Cloud Run | |
| uses: actions-hub/gcloud@master | |
| id: deploy | |
| env: | |
| PROJECT_ID: ${{ secrets.PROJECT_ID }} | |
| GAR_LOCATION: ${{ secrets.GAR_LOCATION }} | |
| GAR_NAME: ${{ secrets.GAR_NAME }} | |
| SERVICE_NAME: "${{ secrets.SERVICE_NAME }}" | |
| SERVICE_REGION: "${{ secrets.SERVICE_REGION }}" | |
| with: | |
| args: run services update '${{ env.SERVICE_NAME }}' --image='${{ env.GAR_LOCATION }}'-docker.pkg.dev/'${{ env.PROJECT_ID }}'/'${{ env.GAR_NAME }}'/${{ steps.getversion.outputs.version }}:${{ github.sha }} --region='${{ env.SERVICE_REGION }}' --project='${{ env.PROJECT_ID }}' | |
| - name: Run Notification | |
| id: runnotificationsent | |
| uses: act10ns/slack@v1 | |
| with: | |
| status: ${{ job.status }} | |
| steps: ${{ toJson(steps) }} | |
| channel: ${{ env.SLACK_CHANNEL }} | |
| message: Deploying {{ env.GITHUB_REF_NAME }} branch to DEV ${{ job.status }} | |
| if: always() |