generated from okp4/template-oss
-
Notifications
You must be signed in to change notification settings - Fork 126
62 lines (49 loc) · 1.25 KB
/
build.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
53
54
55
56
57
58
59
60
61
62
name: Build
on:
workflow_call:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
build-go:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup Go environment
uses: actions/setup-go@v4.0.1
with:
go-version: '1.20'
- name: Build go project
run: |
make build
build-docker:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build docker image
run: |
docker build .
build-proto:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Find changed proto files
id: changed-proto-files
uses: tj-actions/changed-files@v37.1.2
with:
files: |
proto/**/*.proto
- name: Setup buf
if: steps.changed-proto-files.outputs.any_changed == 'true'
uses: bufbuild/buf-setup-action@v1.23.1
- name: Build and generate proto
if: steps.changed-proto-files.outputs.any_changed == 'true'
run: |
make proto-gen