From 6900e01018218f33df20130d0feedfd1a07a3ae8 Mon Sep 17 00:00:00 2001 From: Vadimka Komissarov Date: Sat, 29 Jun 2024 09:38:21 +0000 Subject: [PATCH] CI - go build cmdline fix --- .github/workflows/alice-builder.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/alice-builder.yml b/.github/workflows/alice-builder.yml index f4b7de8..6507606 100644 --- a/.github/workflows/alice-builder.yml +++ b/.github/workflows/alice-builder.yml @@ -108,7 +108,7 @@ jobs: - name: Download all required imports run: go mod download - name: Build source code for ${{ matrix.goos }} ${{ matrix.goarch }} - run: go build -trimpath -ldflags="-s -w -X 'main.version=${{ needs.parse_phase.outputs.BUILD_GOTAG }}' -X 'main.buildtime=${{ needs.parse_phase.outputs.BUILD_GOTIME }}'" -o ./alice-${{ matrix.goos }}.${{ matrix.goarch }}${{ matrix.extention }} + run: go build -trimpath -ldflags="-s -w -X 'main.version=${{ needs.parse_phase.outputs.BUILD_GOTAG }}' -X 'main.buildtime=${{ needs.parse_phase.outputs.BUILD_GOTIME }}'" -o ./alice-${{ matrix.goos }}.${{ matrix.goarch }}${{ matrix.extention }} cmd/main.go env: GOOS: ${{ matrix.goos }} GOARCH: ${{ matrix.goarch }}