Skip to content

Commit

Permalink
Build 32-bit Windows binary
Browse files Browse the repository at this point in the history
  • Loading branch information
null-dev committed Apr 5, 2021
1 parent 535fd1e commit 971c984
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,25 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
name: linux-artifacts
retention-days: 5
path: |
target/debian
target/release/rpmbuild/RPMS
build-windows:
runs-on: windows-latest
strategy:
matrix:
target: [
i686-pc-windows-msvc,
x86_64-pc-windows-msvc,
]
steps:
- name: Setup rust toolchain
uses: actions-rs/toolchain@v1
with:
target: ${{ matrix.target }}
override: true
default: true
- name: Install wix packager for cargo
run: cargo install cargo-wix

Expand All @@ -58,6 +71,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
with:
name: windows-artifacts
retention-days: 5
path: |
target/wix
release:
Expand Down

0 comments on commit 971c984

Please sign in to comment.