Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
- name: Install dev dependencies
run: |
python -m pip install --upgrade pip
pip install -U -e .[build]
mkdir dist
- name: Build wheels (and sdist)
pip install -U setuptools flit build twine hatchling
- name: Create source distribution
run: |
cd dist
python -m build ../
cd ../
python -m build -n -s
- name: Build wheel
run: |
python -m build -n -w
- name: Twine check
run: |
twine check dist/*
Expand Down
Loading