We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c637dea commit 2306740Copy full SHA for 2306740
1 file changed
.github/workflows/ci.yml .github/workflows/build-master.yml.github/workflows/ci.yml renamed to .github/workflows/build-master.yml
@@ -46,6 +46,14 @@ jobs:
46
mv target/aarch64-musl/aarch64-unknown-linux-musl/release/tap-proxy output/tap-proxy-aarch64-linux-musl
47
ls output -l
48
49
+ - name: Build windows-x86_64-gnu
50
+ run: |
51
+ cross build --release --target x86_64-pc-windows-gnu --target-dir target/win64
52
+
53
+ mkdir -p output || true
54
+ mv target/win64/x86_64-pc-windows-gnu/release/tap-proxy.exe output/tap-proxy-win64.exe
55
+ ls output -l
56
57
# 发布 Nightly Release
58
- name: Publish Nightly Release
59
env:
@@ -58,6 +66,7 @@ jobs:
66
gh release create nightly \
67
output/tap-proxy-x86_64-linux-musl \
60
68
output/tap-proxy-aarch64-linux-musl \
69
+ output/tap-proxy-win64.exe \
61
70
--title "Nightly Release" \
62
71
--notes "Automatically built from master commit $GITHUB_SHA on $(date -u +'%Y-%m-%d %H:%M:%S UTC')" \
63
72
--prerelease
0 commit comments