We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df5f472 commit 1adb4b5Copy full SHA for 1adb4b5
1 file changed
.github/workflows/release.yml
@@ -17,9 +17,9 @@ jobs:
17
matrix:
18
# You can add more, for any target you'd like!
19
include:
20
- - build: windows-gnu
+ - build: windows
21
os: windows-latest
22
- target: x86_64-pc-windows-gnu
+ target: x86_64-pc-windows-msvc
23
24
steps:
25
- name: Checkout
@@ -40,15 +40,15 @@ jobs:
40
- name: Build
41
uses: actions-rs/cargo@v1
42
with:
43
- use-cross: true
+ use-cross: false
44
command: build
45
args: --verbose --release --target ${{ matrix.target }}
46
47
- name: Build archive
48
shell: bash
49
run: |
50
# Replace with the name of your binary
51
- binary_name="<BINARY_NAME>"
+ binary_name="txcproxy"
52
53
dirname="$binary_name-${{ env.VERSION }}-${{ matrix.target }}"
54
mkdir "$dirname"
0 commit comments