Skip to content

Commit

Permalink
Trying to allow re-release manually
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Nov 22, 2023
1 parent 81367af commit efa639e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: Update cargo packages
run: cargo update

- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -136,7 +140,7 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') }}
if: github.ref_type == 'tag' || github.event_name == 'workflow_dispatch'
needs: [linux, windows, macos, sdist]
steps:
- uses: actions/download-artifact@v3
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,6 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: release-plz
uses: MarcoIeni/[email protected]

- name: Install stable toolchain
uses: dtolnay/rust-toolchain@master
Expand Down

0 comments on commit efa639e

Please sign in to comment.