Skip to content
This repository was archived by the owner on Jul 15, 2026. It is now read-only.

Commit fde7e6e

Browse files
committed
fix: 修复工作流 winhttp.dll 的上传
1 parent 9a07146 commit fde7e6e

1 file changed

Lines changed: 5 additions & 16 deletions

File tree

‎.github/workflows/build.yml‎

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,11 @@ jobs:
3737
- name: Build
3838
run: cargo build --release
3939

40-
- name: Upload version.dll
40+
- name: Upload winhttp.dll
4141
uses: actions/upload-artifact@v4
4242
with:
43-
name: version.dll
44-
path: target/i686-pc-windows-msvc/release/version.dll
45-
46-
- name: Upload d3d9.dll
47-
uses: actions/upload-artifact@v4
48-
with:
49-
name: d3d9.dll
50-
path: target/i686-pc-windows-msvc/release/d3d9.dll
43+
name: winhttp.dll
44+
path: target/i686-pc-windows-msvc/release/winhttp.dll
5145

5246
release:
5347
if: startsWith(github.ref, 'refs/tags/v')
@@ -58,14 +52,9 @@ jobs:
5852
steps:
5953
- uses: actions/download-artifact@v4
6054
with:
61-
name: version.dll
62-
63-
- uses: actions/download-artifact@v4
64-
with:
65-
name: d3d9.dll
55+
name: winhttp.dll
6656

6757
- uses: softprops/action-gh-release@v2
6858
with:
6959
files: |
70-
version.dll
71-
d3d9.dll
60+
winhttp.dll

0 commit comments

Comments
 (0)