Skip to content

Commit

Permalink
Fix nightly release process
Browse files Browse the repository at this point in the history
Previously, create-ko-yaml didn't need to be run in ${PROJECT_ROOT}, but
after tektoncd#4260 it tries to `go run` something assuming it's in
${PROJECT_ROOT}, which fails unless we `cd` into that directory.
  • Loading branch information
imjasonh committed Oct 13, 2021
1 parent f7d7750 commit 5c34763
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tekton/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ spec:
#!/bin/sh
set -ex
cd ${PROJECT_ROOT}
# Combine Distroless with a Windows base image, used for the entrypoint image.
COMBINED_BASE_IMAGE=$(go run ./vendor/github.com/tektoncd/plumbing/cmd/combine/main.go \
gcr.io/distroless/base:debug-nonroot \
Expand Down

0 comments on commit 5c34763

Please sign in to comment.