From 9ffc55ba13d5aa1b9caa53685dbdd0459706732c Mon Sep 17 00:00:00 2001 From: Jason Kulatunga Date: Thu, 8 Oct 2020 00:55:19 -0600 Subject: [PATCH] fix --- .github/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a9fff48..c6129a2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -27,7 +27,7 @@ jobs: env: GOOS: linux GOARCH: amd64 - CGO_ENABLED=0 + CGO_ENABLED: 0 run: | apt-get update && apt-get install -y file @@ -44,7 +44,7 @@ jobs: env: GOOS: linux GOARCH: arm - CGO_ENABLED=0 + CGO_ENABLED: 0 run: | cd $PROJECT_PATH go build -ldflags "-X main.goos=linux -X main.goarch=arm" -o scrutiny-web-linux-arm -tags "static" webapp/backend/cmd/scrutiny/scrutiny.go @@ -57,7 +57,7 @@ jobs: env: GOOS: linux GOARCH: arm64 - CGO_ENABLED=0 + CGO_ENABLED: 0 run: | cd $PROJECT_PATH go build -ldflags "-X main.goos=linux -X main.goarch=arm64" -o scrutiny-web-linux-arm64 -tags "static" webapp/backend/cmd/scrutiny/scrutiny.go @@ -79,7 +79,7 @@ jobs: env: GOOS: freebsd GOARCH: amd64 - CGO_ENABLED=0 + CGO_ENABLED: 0 run: | cd $PROJECT_PATH go build -ldflags "-X main.goos=freebsd -X main.goarch=amd64" -o scrutiny-web-freebsd-amd64 -tags "static" webapp/backend/cmd/scrutiny/scrutiny.go