Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
aamalev committed Nov 12, 2024
1 parent dfdfbff commit 4207341
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
with:
python-version: 3.x
- name: Set version from tag
run: sed -i -e 's/^version = .*/version = "${GITHUB_REF_NAME}"/' Cargo.toml
run: sed -i -e 's/^version = .*/version = "${{ github.ref_name }}"/' Cargo.toml
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
with:
python-version: 3.x
- name: Set version from tag
run: sed -i -e 's/^version = .*/version = "${GITHUB_REF_NAME}"/' Cargo.toml
run: sed -i -e 's/^version = .*/version = "${{ github.ref_name }}"/' Cargo.toml
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
python-version: 3.x
architecture: ${{ matrix.platform.target }}
- name: Set version from tag
run: sed -i -e 's/^version = .*/version = "${GITHUB_REF_NAME}"/' Cargo.toml
run: sed -i -e 's/^version = .*/version = "${{ github.ref_name }}"/' Cargo.toml
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
with:
python-version: 3.x
- name: Set version from tag
run: sed -i -e 's/^version = .*/version = "${GITHUB_REF_NAME}"/' Cargo.toml
run: sed -i -e 's/^version = .*/version = "${{ github.ref_name }}"/' Cargo.toml
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand All @@ -151,7 +151,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set version from tag
run: sed -i -e 's/^version = .*/version = "${GITHUB_REF_NAME}"/' Cargo.toml
run: sed -i -e 's/^version = .*/version = "${{ github.ref_name }}"/' Cargo.toml
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
Expand Down

0 comments on commit 4207341

Please sign in to comment.