From 74a7b8c3437ad8035277cc8198e6519ff363dc18 Mon Sep 17 00:00:00 2001 From: Alistair Miles Date: Tue, 26 Mar 2024 10:09:50 +0000 Subject: [PATCH] comments --- .github/workflows/deploy.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4b432e3e..c5eb1fed 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 @@ -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 @@ -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