Skip to content

Commit

Permalink
Fix up bad CRC issue on deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
chemix-lunacy committed Aug 5, 2024
1 parent 61511fc commit 8bf4114
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/deploy-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ name: deploy-wheels
on:
release:
types: [released]
pull_request:

jobs:
deploy:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04", "windows-2019", "macos-14", "macos-latest"]
os: ["ubuntu-20.04", "windows-2019", "macos-14"]
steps:
- uses: actions/checkout@v4
- name: Setup rust toolchain
Expand All @@ -22,7 +23,7 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: "3.10"
if: ${{ matrix.os != 'macos-14' && matrix.os != 'macos-latest' }}
if: ${{ matrix.os != 'macos-14' }}
- name: Install LLVM
uses: ./.github/actions/install-llvm
with:
Expand Down Expand Up @@ -62,4 +63,5 @@ jobs:
- name: Publish to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist/
packages-dir: dist/
repository-url: https://test.pypi.org/legacy/

0 comments on commit 8bf4114

Please sign in to comment.