diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4dd03eb..3a6ccfd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,9 +29,9 @@ jobs: run: | echo "tag=`basename ${{ github.ref }}`" >> ${GITHUB_OUTPUT} if [ ${{ matrix.os }} = "windows" ]; then - exe=bbx-${GOOS}-${GOARCH}.exe + exe=bbx-${{ matrix.os }}-${{ matrix.arch }}.exe else - exe=bbx-${GOOS}-${GOARCH} + exe=bbx-${{ matrix.os }}-${{ matrix.arch }} fi echo "exe=${exe}" >> ${GITHUB_OUTPUT} echo ${{ steps.set_output.outputs.tag }}