Skip to content

Commit dcb2709

Browse files
committed
ci: add missing Go setup to sidecar build
We forgot to add the Go setup we need in the sidecar build to run the sidecar tag script. Signed-off-by: Jacob Howard <[email protected]>
1 parent 504d325 commit dcb2709

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,9 @@ jobs:
107107
if: github.ref_type != 'tag'
108108
steps:
109109
- uses: actions/checkout@v2
110+
- uses: actions/setup-go@v2
111+
with:
112+
go-version: '^1.17'
110113
- uses: docker/setup-qemu-action@v1
111114
- uses: docker/setup-buildx-action@v1
112115
- name: "Determine sidecar tags"
@@ -130,6 +133,9 @@ jobs:
130133
needs: [macos, linux, windows]
131134
steps:
132135
- uses: actions/checkout@v2
136+
- uses: actions/setup-go@v2
137+
with:
138+
go-version: '^1.17'
133139
- uses: docker/setup-qemu-action@v1
134140
- uses: docker/setup-buildx-action@v1
135141
- uses: docker/login-action@v1

0 commit comments

Comments
 (0)