From 8cd616bf331ce63017530091613ab861783a804d Mon Sep 17 00:00:00 2001 From: Scott Sunarto Date: Fri, 3 Nov 2023 20:38:57 -0700 Subject: [PATCH] ci: rename binary to `world` instead of `world-cli` --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94d8ae0..881ceed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,7 @@ jobs: - name: Build ${{ matrix.goos }}/${{ matrix.goarch }} id: build run: | - output_name=world-cli_${{ matrix.goos }}_${{ matrix.goarch }} + output_name=world_${{ matrix.goos }}_${{ matrix.goarch }} [ ${{ matrix.goos }} = "windows" ] && output_name+=".exe" env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o $output_name @@ -54,5 +54,5 @@ jobs: if: ${{ inputs.create_release }} uses: actions/upload-artifact@v3 with: - name: world-cli-${{ matrix.goos }}-${{ matrix.goarch }} - path: ./world-cli*.tar.gz + name: world-${{ matrix.goos }}-${{ matrix.goarch }} + path: ./world*.tar.gz