Skip to content

Commit ebd097c

Browse files
committed
Build echo container image in CI
Note: The image is not pushed anywhere yet, that'll hopefully be done by our local CD witch later. Signed-off-by: Lilly Rose Berner <[email protected]>
1 parent c39ebff commit ebd097c

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/workflows/build-echo.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: build-echo
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- echo/**
9+
pull_request:
10+
paths:
11+
- echo/**
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-24.04
16+
steps:
17+
- name: set up buildx
18+
uses: docker/setup-buildx-action@v3
19+
- name: build and push
20+
uses: docker/build-push-action@v6
21+
with:
22+
# push: true
23+
tags: echo:latest
24+
context: "{{defaultContext}}:echo"
25+
env:
26+
SOURCE_DATE_EPOCH: 0

echo/test

Whitespace-only changes.

0 commit comments

Comments
 (0)