Skip to content

Commit 2d8a4cf

Browse files
authored
Merge pull request #27 from Intsights/viktor-fix-plt-1179-cd-add-arm64-linux-build
Fix PLT-1179: CD | fix cross-compilers
2 parents e6ccbcb + c93b701 commit 2d8a4cf

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
run: |
3838
rustup target add x86_64-apple-darwin
3939
rustup target add aarch64-apple-darwin
40+
- name: Install Cross-compilers (Linux)
41+
if: matrix.os == 'ubuntu-latest'
42+
run: |
4043
rustup target add aarch64-unknown-linux-gnu
4144
- name: Publish Package
4245
uses: PyO3/maturin-action@v1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pydomainextractor"
3-
version = "0.13.6"
3+
version = "0.13.7"
44
authors = ["Gal Ben David <gal@intsights.com>"]
55
edition = "2021"
66
description = "A blazingly fast domain extraction library written in Rust"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pydomainextractor"
3-
version = "0.13.6"
3+
version = "0.13.7"
44
description = "A blazingly fast domain extraction library written in Rust"
55
authors = [
66
{email = "gal@intsights.com"},

0 commit comments

Comments
 (0)