-
Notifications
You must be signed in to change notification settings - Fork 28
51 lines (42 loc) · 1.38 KB
/
kube.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
name: Deploy to GKE
on:
push:
branches:
- feat/docker
jobs:
build:
name: Building and push image to gcr
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure GCR credentials
uses: google-github-actions/setup-gcloud@v0.3.0
with:
service_account_key: ${{ secrets.GCR_SERVICE_ACCOUNT_KEY }}
project_id: ${{ secrets.PROJECT_ID }}
export_default_credentials: true
- name: Configure Docker Client
run: |-
gcloud auth configure-docker --quiet
- name: Get tag
run: echo "branch=$(echo ${GITHUB_REF_NAME})" >>$GITHUB_OUTPUT
id: get-tag
- name: Get short sha
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
id: get-short
- name: Build image web and push it
uses: docker/build-push-action@v2
with:
push: true
file: Dockerfile
tags: |
eu.gcr.io/spotistats-a49da/web:${{ steps.get-short.outputs.sha_short }}
eu.gcr.io/spotistats-a49da/web:latest
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.PAT }}
repository: statsfm/argocd
event-type: image-updates-web
client-payload: '{"tag": "${{ steps.get-tag.outputs.branch }}-${{ steps.get-short.outputs.sha_short }}"}'