Skip to content

Commit

Permalink
Build echo container image in CI
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
LostLuma committed Nov 29, 2024
1 parent c39ebff commit ebd097c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build-echo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build-echo

on:
push:
branches:
- main
paths:
- echo/**
pull_request:
paths:
- echo/**

jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: set up buildx
uses: docker/setup-buildx-action@v3
- name: build and push
uses: docker/build-push-action@v6
with:
# push: true
tags: echo:latest
context: "{{defaultContext}}:echo"
env:
SOURCE_DATE_EPOCH: 0
Empty file added echo/test
Empty file.

0 comments on commit ebd097c

Please sign in to comment.