We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0522837 commit afcd954Copy full SHA for afcd954
.github/workflows/build.yml
@@ -58,9 +58,9 @@ jobs:
58
- name: Cache Rust dependencies
59
uses: Swatinem/rust-cache@v2
60
61
- - name: Install cross (for Windows build)
+ - name: Install cargo-xwin (for Windows build)
62
if: matrix.target == 'x86_64-pc-windows-msvc'
63
- run: cargo install cross
+ run: cargo install cargo-xwin
64
65
- name: Set build flags
66
id: build_flags
@@ -83,7 +83,7 @@ jobs:
83
84
- name: Build (Windows)
85
86
- run: cross build ${{ steps.build_flags.outputs.flags }} --target ${{ matrix.target }}
+ run: cargo xwin build ${{ steps.build_flags.outputs.flags }} --target ${{ matrix.target }}
87
88
- name: Upload artifact
89
uses: actions/upload-artifact@v3
0 commit comments