Skip to content

Commit

Permalink
🐛 修复网速单位错误的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
snowykami committed Oct 3, 2024
1 parent daac74c commit c852945
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c852945

Please sign in to comment.