-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |