update filename

This commit is contained in:
Yuzuki 2022-06-06 08:25:04 +08:00 committed by GitHub
parent b0b8362677
commit 055ea83a38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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