We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c60b4c commit 4585c45Copy full SHA for 4585c45
1 file changed
.github/workflows/build.yml
@@ -37,12 +37,18 @@ jobs:
37
- name: Build
38
run: cargo build --release
39
40
- - name: Upload artifact
+ - name: Upload version.dll
41
uses: actions/upload-artifact@v4
42
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
51
+
52
release:
53
if: startsWith(github.ref, 'refs/tags/v')
54
needs: build
@@ -54,6 +60,12 @@ jobs:
60
55
61
56
62
63
+ - uses: actions/download-artifact@v4
64
65
66
57
67
- uses: softprops/action-gh-release@v2
58
68
59
- files: version.dll
69
+ files: |
70
+ version.dll
71
+ d3d9.dll
0 commit comments