Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Mar 26, 2024
1 parent b7cff38 commit 010a603
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'v*'
jobs:
# Build CLI tool.
build:
build-cli:
env:
CARGO_TERM_COLOR: always
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -82,7 +82,10 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 'cp310', 'pp38', 'pp39' ]
python-version:
- cp310
- pp38
- pp39
build:
- linux
- macos
Expand Down Expand Up @@ -163,7 +166,7 @@ jobs:


publish:
needs: [ build, build-py ]
needs: [ build-cli, build-py ]
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ classifiers = [


[tool.maturin]
features = ["pyo3/extension-module"]
features = ["pyo3/extension-module", "yara-x/openssl-static"]

0 comments on commit 010a603

Please sign in to comment.