-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (44 loc) · 1.15 KB
/
go.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
name: Go
on:
push:
tags:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: clickhouse-exporter
- uses: actions/checkout@v4
with:
repository: altinity/clickhouse-operator
ref: release-0.20.1
path: clickhouse-operator
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Install promu package
run: go install -v github.com/prometheus/[email protected]
- name: Build
run: |
cd clickhouse-exporter
for GOOS in linux; do
for GOARCH in amd64; do
echo "Building $GOOS-$GOARCH"
export GOOS=$GOOS
export GOARCH=$GOARCH
promu build -v --prefix=build
mv build/clickhouse-exporter build/clickhouse-exporter-${GOOS}-${GOARCH}
done
done
promu -v checksum build/
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
clickhouse-exporter/build/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}