From 75bf23181e1aa721600811579e2764b0790248fa Mon Sep 17 00:00:00 2001 From: Salastil Date: Sun, 23 Nov 2025 03:49:56 -0500 Subject: [PATCH] Release version --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 724a943..431c40f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: go-version-file: go.mod cache: true - - name: Build raw binaries + - name: Build ${{ matrix.goos }}_${{ matrix.goarch }} env: GOOS: ${{ matrix.goos }} GOARCH: ${{ matrix.goarch }} @@ -48,10 +48,10 @@ jobs: outfile="${BINARY_NAME}_${{ matrix.goos }}_${{ matrix.goarch }}" go build -o "dist/${outfile}" . - - name: Upload raw binary + - name: Upload binary uses: actions/upload-artifact@v4 with: - name: binaries + name: binaries_${{ matrix.goos }}_${{ matrix.goarch }} path: dist/${{ env.BINARY_NAME }}_${{ matrix.goos }}_${{ matrix.goarch }} if-no-files-found: error @@ -71,7 +71,7 @@ jobs: tag="${GITHUB_REF_NAME}" tar -czf "dist/${{ env.BINARY_NAME }}_${tag}_source.tar.gz" . - - name: Upload source artifact + - name: Upload source uses: actions/upload-artifact@v4 with: name: source @@ -91,7 +91,7 @@ jobs: path: dist merge-multiple: true - - name: Publish assets to GitHub Release + - name: Publish to GitHub release uses: softprops/action-gh-release@v2 with: tag_name: ${{ github.ref_name }}