From 566c3c1b59d22b13058d15ddaa71d8c7866c4bd4 Mon Sep 17 00:00:00 2001 From: Azalea Date: Fri, 8 May 2026 06:33:42 +0000 Subject: [PATCH] [F] Fix build --- .github/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de148ba..d42ea6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ permissions: contents: read env: - BIN_NAME: git-sync + BIN_NAME: refray CARGO_TERM_COLOR: always jobs: @@ -47,8 +47,8 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v4 with: - name: git-sync-windows-x86_64 - path: git-sync-windows-x86_64.zip + name: ${{ env.BIN_NAME }}-windows-x86_64 + path: ${{ env.BIN_NAME }}-windows-x86_64.zip if-no-files-found: error macos-universal: @@ -90,8 +90,8 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v4 with: - name: git-sync-macos-universal - path: git-sync-macos-universal.tar.gz + name: ${{ env.BIN_NAME }}-macos-universal + path: ${{ env.BIN_NAME }}-macos-universal.tar.gz if-no-files-found: error linux-musl: @@ -145,6 +145,6 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v4 with: - name: git-sync-linux-${{ matrix.arch }}-musl - path: git-sync-linux-${{ matrix.arch }}-musl.tar.gz + name: ${{ env.BIN_NAME }}-linux-${{ matrix.arch }}-musl + path: ${{ env.BIN_NAME }}-linux-${{ matrix.arch }}-musl.tar.gz if-no-files-found: error