From 0c490e3954839a7c71ef21ae1332ee9971ca8dfb Mon Sep 17 00:00:00 2001 From: Andy Wu Date: Tue, 8 Oct 2024 16:45:20 -0700 Subject: [PATCH] Update build-release-artifacts.yml --- .github/workflows/build-release-artifacts.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/build-release-artifacts.yml b/.github/workflows/build-release-artifacts.yml index 5d2dde8..e8030de 100644 --- a/.github/workflows/build-release-artifacts.yml +++ b/.github/workflows/build-release-artifacts.yml @@ -35,14 +35,11 @@ jobs: - name: Set up environment for cross-compilation run: | IFS="-" read -r GOOS GOARCH <<< "${{ matrix.platform }}" - output_name=./build/bin/geth + output_name=./build/bin/geth-${{ matrix.platform }} echo "Building for $GOOS/$GOARCH..." env GOOS=$GOOS GOARCH=$GOARCH go build -o $output_name ./cmd/geth - - name: List release assets - run: ls -l ./release - - name: Upload binaries and source code to GitHub Release uses: svenstaro/upload-release-action@v2 with: @@ -50,7 +47,5 @@ jobs: tag: ${{ github.event.release.tag_name }} file: | ./build/bin/geth-${{ matrix.platform }} - ./release/source-code.zip - ./release/source-code.tar.gz file_glob: false