backend image update: e379f606b0d7535f97f79eb130ce6cbdb92a93c4 #35
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: Helm Deploy to GKE | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- "infrastructure/k8s/folio-feed-helm/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
env: | |
GKE_CLUSTER: folio-feed-cluster | |
GKE_LOCATION: us-central1 | |
jobs: | |
helm-deploy: | |
name: Helm Deploy to GKE | |
runs-on: ubuntu-latest | |
environment: production | |
permissions: | |
contents: 'read' | |
id-token: 'write' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Authentication via credentials json | |
- id: 'auth' | |
uses: 'google-github-actions/auth@v1' | |
with: | |
credentials_json: '${{ secrets.GCP_CREDENTIALS }}' | |
- name: Setup Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: "v3.12.3" | |
# Get the GKE credentials so we can deploy to the cluster | |
- id: 'get-credentials' | |
uses: 'google-github-actions/get-gke-credentials@v1' | |
with: | |
cluster_name: ${{ env.GKE_CLUSTER }} | |
location: ${{ env.GKE_LOCATION }} | |
- name: Set up Taskfile | |
uses: arduino/[email protected] | |
- name: helm deploy | |
run: task helm-upgrade | |