From 1852444b8ba2aa3d9fb39713c7bdc23858e96c65 Mon Sep 17 00:00:00 2001 From: Aditya <60684641+0x0elliot@users.noreply.github.com> Date: Sun, 30 Jun 2024 16:25:05 +0530 Subject: [PATCH] ci: trying to push binaries reliably (1) --- .github/workflows/binary-release.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/binary-release.yaml b/.github/workflows/binary-release.yaml index 1909302..962ad95 100644 --- a/.github/workflows/binary-release.yaml +++ b/.github/workflows/binary-release.yaml @@ -37,9 +37,11 @@ jobs: cd shuffle_email_rules/lib/ go mod tidy mkdir -p build/${{ matrix.goos }}_${{ matrix.goarch }} - GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o build/libshuffleemail_{{ matrix.goos }}_{{ matrix.goarch }} -buildmode=c-shared -v + go build -v -o build/libshuffleemail_{{ matrix.goos }}_{{ matrix.goarch }} -buildmode=c-shared env: CGO_ENABLED: 1 + GOOS: ${{ matrix.goos }} + GOARCH: ${{ matrix.goarch }} - name: Commit binaries run: |