Skip to content

Commit f832310

Browse files
committed
build envoy
Signed-off-by: spacewander <[email protected]>
1 parent a0a3f88 commit f832310

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/release.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI triggered by release branch
2+
on:
3+
push:
4+
branches:
5+
- 'release-*'
6+
7+
jobs:
8+
release:
9+
permissions:
10+
contents: write
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
- name: Setup Bazel
18+
uses: bazel-contrib/[email protected]
19+
with:
20+
bazelisk-cache: true
21+
disk-cache: true
22+
repository-cache: true
23+
external-cache: true
24+
- name: Build
25+
run: |
26+
make build_envoy

0 commit comments

Comments
 (0)