-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (44 loc) · 1.5 KB
/
build-backend.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Build Backend
on:
push:
branches: [ "main" ]
paths:
- "applications/backend/**"
env:
PROJECT_ID: ${{ secrets.GKE_PROJECT }}
GAR_LOCATION: us-central1
jobs:
setup-build-publish:
name: Setup, Build, Publish
runs-on: ubuntu-latest
environment: production
permissions:
contents: 'write'
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: Docker configuration
run: gcloud auth configure-docker ${{ env.GAR_LOCATION }}-docker.pkg.dev --quiet
- name: Set up Taskfile
uses: arduino/[email protected]
- name: Build
run: task build-backend-image tag="$GITHUB_SHA"
# Push the Docker image to Google Artifact Registry
- name: Publish
run: task push-backend-image tag="$GITHUB_SHA"
- name: Replace Backend Image Tag
run: sed -i "s/\(&backendImageTag\) [^[:space:]]*/\1 $GITHUB_SHA/g" infrastructure/k8s/folio-feed-helm/values.yaml
- name: Commit the Changes
run: |
git config user.name "Github Actions"
git config user.email [email protected]
git diff
git add infrastructure/k8s/folio-feed-helm/values.yaml
git commit -m "backend image update: $GITHUB_SHA"
git push https://${{ secrets.PAT_TOKEN }}@github.com/Gowtham1729/folio-feed.git main