-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (58 loc) · 1.49 KB
/
release.yaml
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
57
58
59
60
61
62
63
64
65
name: Release
on:
push:
branches:
- "main"
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Test
run: go test -v ./...
push:
name: Push
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v3
name: Check out code
- uses: mr-smithers-excellent/docker-build-push@v6
name: Build and Push Image
with:
image: profile
registry: ghcr.io
dockerfile: Dockerfile
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
deployStg:
name: Deploy Staging
runs-on: ubuntu-latest
needs: push
container:
image: docker.io/bitnami/kubectl:1.29.0
steps:
- name: "Patch Image"
run: kubectl set image deployment/profile-staging svc=$IMAGE
env:
KUBE_CONFIG: ${{ secrets.KUBECONFIG }}
IMAGE: ${{needs.push.outputs.imageFullName}}
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: push
container:
image: docker.io/bitnami/kubectl:1.29.0
steps:
- name: "Patch Image"
run: |
echo $KUBE_CONFIG | base64 -d > ~/.kube/config
kubectl set image deployment/profile svc=$IMAGE
env:
KUBE_CONFIG: ${{ secrets.KUBECONFIG }}
IMAGE: ${{needs.push.outputs.imageFullName}}