Skip to content

Commit

Permalink
Replace SingletonConfigurable classes with Configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Jan 8, 2025
1 parent 000f570 commit 709d436
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,15 @@ jobs:

- uses: actions/upload-artifact@v4
with:
# path: ./dist/*.whl
# include-hidden-files: true
# retention-days: 1
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
<<<<<<< Updated upstream
path: ./wheelhouse/*.whl
||||||| Stash base
path: ./dist/*.whl
=======
path: ./wheelhouse/*.whl
if-no-files-found: warn
>>>>>>> Stashed changes

build_sdist:
name: Build source distribution
Expand All @@ -47,12 +51,14 @@ jobs:
run: |
pip install -U build
python -m build --sdist
- uses: actions/upload-artifact@v4
- name: Upload sdist result
uses: actions/upload-artifact@v4
with:
name: cibw-sdist
path: dist/*.tar.gz
include-hidden-files: true
retention-days: 1
if-no-files-found: warn


upload_pypi:
needs: [build_wheels, build_sdist] # , build_sdist
Expand Down

0 comments on commit 709d436

Please sign in to comment.