Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/scrutiny/commit/33e370e90fe787119d08e0a78e04856628aac444?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
4 deletions
@ -34,12 +34,12 @@ jobs:
- name : Build Binaries
- name : Build Binaries
shell : bash
shell : bash
run : |
run : |
mkdir -p $GITHUB_WORKSPACE / dist
mkdir -p $GITHUB_WORKSPACE \ dist
echo "building collector binary (OS = ${GOOS}, ARCH = ${GOARCH})"
echo "building collector binary (OS = ${GOOS}, ARCH = ${GOARCH})"
go build -ldflags "-extldflags=-static -X main.goos=${GOOS} -X main.goarch=${GOARCH}" -o $GITHUB_WORKSPACE /dist/scrutiny-collector-metrics-${GOOS}-${GOARCH}.exe -tags "static netgo" collector/cmd/collector-metrics/ collector-metrics.go
go build -ldflags "-extldflags=-static -X main.goos=${GOOS} -X main.goarch=${GOARCH}" -o $GITHUB_WORKSPACE \dist\scrutiny-collector-metrics-${GOOS}-${GOARCH}.exe -tags "static netgo" collector\cmd\collector-metrics\ collector-metrics.go
ls $GITHUB_WORKSPACE /dist/ scrutiny-collector-metrics-${GOOS}-${GOARCH}.exe
ls $GITHUB_WORKSPACE \dist\ scrutiny-collector-metrics-${GOOS}-${GOARCH}.exe
- name : Release Asset - Collector - windows-amd64
- name : Release Asset - Collector - windows-amd64
id : upload-release-asset2
id : upload-release-asset2
uses : actions/upload-release-asset@v1
uses : actions/upload-release-asset@v1