Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
alimanfoo committed Mar 26, 2024
1 parent a17ecee commit 74a7b8c
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v4
- name: Checkout source
uses: actions/checkout@v4

- uses: actions/setup-python@v5
- name: Set up Python
uses: actions/setup-python@v5

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.17.0
Expand All @@ -28,7 +30,8 @@ jobs:
CIBW_BUILD: "cp3*-*"
CIBW_SKIP: "cp36-* cp37-* *-win32 *i686 *musl*"

- uses: actions/upload-artifact@v4
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
Expand All @@ -37,17 +40,19 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout source
uses: actions/checkout@v4

- uses: actions/setup-python@v5
name: Install Python
name: Set up Python

- name: Build sdist
run: |
python -m pip install -U setuptools setuptools_scm[toml]
python setup.py sdist
- uses: actions/upload-artifact@v3
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

Expand Down

0 comments on commit 74a7b8c

Please sign in to comment.