fix windows asset builder

pull/210/head
Jason Kulatunga 3 years ago
parent 0d580932ad
commit 0460985bc5

@ -25,11 +25,11 @@ jobs:
- name: Build Binaries
shell: bash
run: |
mkdir -p $GITHUB_WORKSPACE\dist
mkdir -p $GITHUB_WORKSPACE/dist
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
ls $GITHUB_WORKSPACE\dist\scrutiny-collector-metrics-${GOOS}-${GOARCH}.exe
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
- name: Release Asset - Collector - windows-amd64
id: upload-release-asset2
@ -38,6 +38,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.SCRUTINY_GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: './dist/scrutiny-collector-metrics-windows-amd64'
asset_name: scrutiny-collector-metrics-windows-amd64
asset_path: './dist/scrutiny-collector-metrics-windows-amd64.exe'
asset_name: scrutiny-collector-metrics-windows-amd64.exe
asset_content_type: application/octet-stream

Loading…
Cancel
Save