Skip to content

Commit

Permalink
ci: add windows build step
Browse files Browse the repository at this point in the history
  • Loading branch information
Saghen committed Oct 14, 2024
1 parent c39227a commit 5e999f8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ jobs:
MACOSX_DEPLOYMENT_TARGET="13" cargo build --release --target ${{ matrix.target }}
mv "${{ matrix.artifact_name }}" "${{ matrix.target }}.dylib"
- name: Build for windowss
if: contains(matrix.os, 'windows')
run: |
cargo build --release --target ${{ matrix.target }}
mv "${{ matrix.artifact_name }}" "${{ matrix.target }}.dylib"
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 5e999f8

Please sign in to comment.