-
Notifications
You must be signed in to change notification settings - Fork 252
58 lines (50 loc) · 1.37 KB
/
build-op-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
53
54
55
56
57
58
name: Building Fluent Operator image
on:
push:
branches:
- 'master'
tags:
- 'v*'
paths:
- ".github/workflows/build-op-image.yaml"
- "apis/**"
- "cmd/fluent-manager/**"
- "controllers/**"
- "hack/**"
- "manifests/setup/setup.yaml"
- "pkg/fluentd/router/**"
- "pkg/fluentd/operator/**"
- "pkg/fluentd/utils/**"
- "Makefile"
env:
REGISTRY_REPO: 'kubesphere'
jobs:
operator-build:
runs-on: ubuntu-latest
timeout-minutes: 30
name: Build Image for Fluent Operator
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- 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 Fluent Operator
run: |
tag=$(cat VERSION | tr -d " \t\n\r")
make build-op -e FO_IMG=${{ env.REGISTRY_REPO }}/fluent-operator:$tag