-
Notifications
You must be signed in to change notification settings - Fork 31
52 lines (44 loc) · 1.18 KB
/
build-ruler-image.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
name: Building kube-events-ruler image
on:
push:
branches:
- 'master'
tags:
- 'v*'
paths:
- ".github/workflows/build-ruler-image.yaml"
- "cmd/ruler/**"
- "hack/**"
- "pkg/**"
- "Makefile"
env:
REPO_RULER: 'kubesphere'
jobs:
ruler-build:
runs-on: ubuntu-latest
timeout-minutes: 30
name: Build Image for kube-events-ruler
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Build and Push Image for kube-events-ruler
run: |
make cross-build-ruler -e REPO_RULER=${{ env.REPO_RULER }}/kube-events-ruler