From c4146b6f2e2cbff2f021a1cafa6601366389f63f Mon Sep 17 00:00:00 2001 From: David Gregory <42326109+hunoz@users.noreply.github.com> Date: Sun, 21 May 2023 18:30:12 -0400 Subject: [PATCH] Just not going to use make in Github --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d2d369a..c63e028 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,7 +57,7 @@ jobs: defaults: run: - shell: zsh + shell: bash strategy: matrix: @@ -74,7 +74,7 @@ jobs: go-version: '1.20.4' - name: Build Spark CLI - run: GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make build + run: GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} go build -ldflags="-X gtech.dev/spark/cognito.ClientId=${{ env.SPARK_CLIENT_ID }} -X gtech.dev/spark/cognito.PoolId=${{ env.SPARK_POOL_ID }} -X gtech.dev/spark/cognito.PoolRegion=${{ env.SPARK_POOL_REGION }}" -o spark-${{ matrix.os }}-${{ matrix.arch }} - name: Download Spark Version Information uses: actions/download-artifact@v1