The build instructions mention building with hack/build.sh however only hack/github-release.sh exists.
./hack/xbuild.sh no longer exists for creating binaries
Docker fails to build because of Step 10, where Step 10/48 : COPY go.* . should be Step 10/48 : COPY go.* ./ else you get an error When using COPY with more than one source file, the destination must be a directory and end with a /.
All build methods in 0.7.4 seem to require a GITHUB_TOKEN env, it'd be worth adding a line to the build docs on why this is the case.
OS: Ubuntu 20.04 Docker: 19.03.12
./hack/xbuild.sh
no longer exists for creating binariesStep 10/48 : COPY go.* .
should beStep 10/48 : COPY go.* ./
else you get an errorWhen using COPY with more than one source file, the destination must be a directory and end with a /
.I ended up building 0.7.0 correctly.