We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5515981 commit 70482e5Copy full SHA for 70482e5
.github/workflows/ts_release.yml
@@ -34,7 +34,9 @@ jobs:
34
- name: Build Web and Docs
35
if: matrix.group == 'standard'
36
run: |
37
- GO111MODULE=off go run gen_web.go
+ go mod init torrserver-web-build
38
+ go mod tidy
39
+ go run gen_web.go
40
cd server && ~/go/bin/swag init -g web/server.go
41
42
- name: Build Standard Platforms
@@ -72,7 +74,9 @@ jobs:
72
74
- name: Build Android (Go 1.25)
73
75
if: matrix.group == 'android'
76
77
78
79
80
LDFLAGS="-s -w -checklinkname=0"
81
mkdir -p dist
82
export NDK_TOOLCHAIN="$ANDROID_NDK_LATEST_HOME/toolchains/llvm/prebuilt/linux-x86_64"
0 commit comments