Skip to content

Commit

Permalink
CI build/upload fix
Browse files Browse the repository at this point in the history
  • Loading branch information
2dav committed Oct 21, 2023
1 parent df5f472 commit 1adb4b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
matrix:
# You can add more, for any target you'd like!
include:
- build: windows-gnu
- build: windows
os: windows-latest
target: x86_64-pc-windows-gnu
target: x86_64-pc-windows-msvc

steps:
- name: Checkout
Expand All @@ -40,15 +40,15 @@ jobs:
- name: Build
uses: actions-rs/cargo@v1
with:
use-cross: true
use-cross: false
command: build
args: --verbose --release --target ${{ matrix.target }}

- name: Build archive
shell: bash
run: |
# Replace with the name of your binary
binary_name="<BINARY_NAME>"
binary_name="txcproxy"
dirname="$binary_name-${{ env.VERSION }}-${{ matrix.target }}"
mkdir "$dirname"
Expand Down

0 comments on commit 1adb4b5

Please sign in to comment.