🐛 修复网速单位错误的问题

This commit is contained in:
远野千束 2024-10-03 19:56:06 +08:00
parent daac74c454
commit c8529456ef

View File

@ -41,8 +41,8 @@ jobs:
- name: Build
run: |
GOOS=${{ matrix.os == 'ubuntu-latest' && 'linux' || matrix.os == 'windows-latest' && 'windows'}}
GOARCH=${{ matrix.arch }}
export GOOS=${{ matrix.os == 'ubuntu-latest' && 'linux' || matrix.os == 'windows-latest' && 'windows'}}
export GOARCH=${{ matrix.arch }}
go build -o build/${{ GOOS }}-${{ matrix.arch }}/server-status-server main.go
- name: Upload binaries