From 71939806584601caf9f43c41213cb2fb59562fa0 Mon Sep 17 00:00:00 2001 From: Lucas Maurice Date: Wed, 4 Oct 2023 23:07:36 -0400 Subject: [PATCH] WIP --- .github/workflows/go.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 7ec2526..2508723 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -31,10 +31,10 @@ jobs: - name: Build for ${{ matrix.GOOS }}-${{ matrix.GOARCH }} run: | - GOOS=${{ matrix.GOOS }} GOARCH=${{ matrix.GOARCH }} go build -C ./src -o $GITHUB_WORKSPACE/bin/$(basename $GITHUB_REPOSITORY) + GOOS=${{ matrix.GOOS }} GOARCH=${{ matrix.GOARCH }} go build -C ./src -o ./bin/$(basename $GITHUB_REPOSITORY) - - name: Upload artifact + - name: Upload artifact uses: actions/upload-artifact@v3 with: - name: ${{ matrix.GOOS }}-${{ matrix.GOARCH }} - path: $GITHUB_WORKSPACE/bin/$(basename $GITHUB_REPOSITORY) + name: ${{ basename $GITHUB_REPOSITORY }}-${{ matrix.GOOS }}-${{ matrix.GOARCH }} + path: ./bin/$(basename $GITHUB_REPOSITORY)