mirror of
https://github.com/snowykami/server-status-server.git
synced 2025-06-06 07:05:22 +00:00
✨ 修复圆角的问题
This commit is contained in:
parent
7c0d6ec228
commit
e794d83172
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
@ -21,8 +21,14 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go-version: [1.22]
|
go-version: [1.22]
|
||||||
os: [ubuntu-latest, windows-latest]
|
os: [linux, windows, darwin]
|
||||||
arch: [amd64, arm64, arm, 386]
|
arch: [amd64, arm64, arm, 386]
|
||||||
|
# darwin不含32位
|
||||||
|
exclude:
|
||||||
|
- os: darwin
|
||||||
|
arch: 386
|
||||||
|
- os: darwin
|
||||||
|
arch: arm
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
@ -51,6 +57,6 @@ jobs:
|
|||||||
- name: Upload binaries
|
- name: Upload binaries
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: server-status-server-${{ matrix.os }}-${{ matrix.arch }}
|
name: server-status-server-${{ env.GOOS }}-${{ env.GOARCH }}
|
||||||
path: build/${{ matrix.os }}-${{ matrix.arch }}/server-status-server
|
path: build/${{ env.GOOS }}-${{ env.GOARCH }}/server-status-server*
|
||||||
if-no-files-found: warn
|
if-no-files-found: warn
|
Loading…
x
Reference in New Issue
Block a user