add nosource

This commit is contained in:
aynakeya
2025-07-31 00:32:22 +08:00
parent 7e680bc6bf
commit 466e4a761e
12 changed files with 172 additions and 31 deletions

View File

@@ -63,10 +63,22 @@ jobs:
- name: Build application
run: |
go build -tags=mpvOnly,nosource -v -o ./AynaLivePlayerMpvNoSource.exe -ldflags -H=windowsgui app/main.go
go build -tags=vlcOnly,nosource -v -o ./AynaLivePlayerVlcNoSource.exe -ldflags -H=windowsgui app/main.go
go build -tags=nosource -v -o ./AynaLivePlayerAllPlayerNoSource.exe -ldflags -H=windowsgui app/main.go
go build -tags=mpvOnly -v -o ./AynaLivePlayerMpv.exe -ldflags -H=windowsgui app/main.go
go build -tags=vlcOnly -v -o ./AynaLivePlayerVlc.exe -ldflags -H=windowsgui app/main.go
go build -v -o ./AynaLivePlayerAllPlayer.exe -ldflags -H=windowsgui app/main.go
- name: Upload artifact (NoSource)
uses: actions/upload-artifact@v4
with:
name: windows-build-nosource
path: |
./AynaLivePlayerMpvNoSource.exe
./AynaLivePlayerVlcNoSource.exe
./AynaLivePlayerAllPlayerNoSource.exe
- name: Upload artifact
uses: actions/upload-artifact@v4
with: