Skip to content

Commit cb31c58

Browse files
authored
Merge pull request #29 from BuoyantIO/flynn/faces-v2
v2 CI
2 parents 4290b6c + 8283e39 commit cb31c58

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: '1.20' # This needs to be a string!
25+
go-version: '1.23.2' # This needs to be a string!
2626

2727
- name: Login to GitHub Container Registry
2828
uses: docker/login-action@v3

.goreleaser.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,24 @@ docker_manifests:
281281
push_flags:
282282
- --insecure
283283

284+
- name_template: "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:{{ .Version }}"
285+
image_templates:
286+
- "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:{{ .Version }}-arm64"
287+
- "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:{{ .Version }}-amd64"
288+
create_flags:
289+
- --insecure
290+
push_flags:
291+
- --insecure
292+
293+
- name_template: "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:latest"
294+
image_templates:
295+
- "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:latest-arm64"
296+
- "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:latest-amd64"
297+
create_flags:
298+
- --insecure
299+
push_flags:
300+
- --insecure
301+
284302
- name_template: "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-external-workload:latest"
285303
image_templates:
286304
- "{{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-external-workload:latest-arm64"

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/BuoyantIO/faces-demo/v2
22

3-
go 1.21
3+
go 1.23
44

5-
toolchain go1.23.1
5+
toolchain go1.23.2
66

77
require (
88
github.com/warthog618/gpiod v0.8.2

0 commit comments

Comments
 (0)