From 055ea83a38c9d099d555a0825bcdd143a3466b1c Mon Sep 17 00:00:00 2001 From: Yuzuki <50410851+Yuzuki616@users.noreply.github.com> Date: Mon, 6 Jun 2022 08:25:04 +0800 Subject: [PATCH] update filename --- .github/workflows/release.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6ad40d0..50d374e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -120,17 +120,17 @@ jobs: - name: Build XrayR run: | mkdir -p build_assets - go build -v -o build_assets/XrayR -trimpath -ldflags "-s -w -buildid=" ./main + go build -v -o build_assets/V2bX -trimpath -ldflags "-s -w -buildid=" ./main - - name: Build Mips softfloat XrayR + - name: Build Mips softfloat V2bX if: matrix.goarch == 'mips' || matrix.goarch == 'mipsle' run: | GOMIPS=softfloat go build -v -o build_assets/XrayR_softfloat -trimpath -ldflags "-s -w -buildid=" ./main - - name: Rename Windows XrayR + - name: Rename Windows V2bX if: matrix.goos == 'windows' run: | cd ./build_assets || exit 1 - mv XrayR XrayR.exe + mv V2bX V2bX.exe - name: Prepare to release run: | cp ${GITHUB_WORKSPACE}/README.md ./build_assets/README.md @@ -168,18 +168,18 @@ jobs: done - name: Change the name run: | - mv build_assets XrayR-$ASSET_NAME + mv build_assets V2bX-$ASSET_NAME # - name: Upload files to Artifacts # uses: actions/upload-artifact@v2 # with: - # name: XrayR-${{ steps.get_filename.outputs.ASSET_NAME }} + # name: V2bX-${{ steps.get_filename.outputs.ASSET_NAME }} # path: | - # ./XrayR-${{ steps.get_filename.outputs.ASSET_NAME }}/* + # ./V2bX-${{ steps.get_filename.outputs.ASSET_NAME }}/* - name: Upload binaries to release uses: svenstaro/upload-release-action@v2 if: github.event_name == 'release' with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: ./XrayR-${{ steps.get_filename.outputs.ASSET_NAME }}.zip* + file: ./V2bX-${{ steps.get_filename.outputs.ASSET_NAME }}.zip* tag: ${{ github.ref }} file_glob: true