Skip to content

Commit

Permalink
Update imspy-connector-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
theGreatHerrLebert authored Jan 6, 2025
1 parent 5b79288 commit 9690991
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/imspy-connector-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ jobs:
- name: Build with Maturin
run: |
cd imspy_connector
maturin build --release --target ${{ matrix.target || '' }}
if [ -n "${{ matrix.target }}" ]; then
maturin build --release --target ${{ matrix.target }}
else
maturin build --release
fi
- name: Publish
if: matrix.publish
Expand Down

0 comments on commit 9690991

Please sign in to comment.