Skip to content

Commit

Permalink
chore: fix targets and maturin typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jselig-rigetti committed Apr 1, 2024
1 parent 6ff44e9 commit 124450f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/action-common-python-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ inputs:
description: "Maturin command used, `build` or `sdist`"
maturin-args:
description: "Rust architecture used for compilation"
maturin-target:
description: "Rust architecture used for compilation"


runs:
Expand Down Expand Up @@ -48,8 +50,8 @@ runs:
uses: messense/maturin-action@v1
with:
command: ${{ inputs.maturin-command }}
target: ${{ inputs.rust-target }}
args: ${{ inputs.matirun-args }} --manifest-path crates/python/Cargo.toml --out dist
target: ${{ inputs.maturin-target }}
args: ${{ inputs.maturin-args }} --manifest-path crates/python/Cargo.toml --out dist
docker-options: -e CI
- name: Install wheel
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: ./.github/action-common-python-release
with:
package-name: ${{ matrix.package-name }}
rust-target: universal2-apple-darwin
maturin-target: universal2-apple-darwin
maturin-args: -i 3.8 3.9 3.10 3.11 3.12 --release

linux:
Expand Down

0 comments on commit 124450f

Please sign in to comment.