summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2023-02-05 09:31:07 -0800
committerBob Ippolito <bob@redivi.com>2023-02-05 09:31:17 -0800
commit08991e091d314e0a200711e0b7b401fb6970d868 (patch)
treeddedff4267629f4e10441a45126bfc62077def53 /.github
parent64f12484892079e175c7636d006cd74f04e26461 (diff)
downloadsimplejson-08991e091d314e0a200711e0b7b401fb6970d868.tar.gz
Fix #309. Build sdist without any overrides
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-and-deploy.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml
index d6b8004..bf0cb11 100644
--- a/.github/workflows/build-and-deploy.yml
+++ b/.github/workflows/build-and-deploy.yml
@@ -70,8 +70,11 @@ jobs:
- name: Install dependencies
run: python -m pip install --upgrade pip setuptools wheel
- - name: Build sdist and wheel
- run: DISABLE_SPEEDUPS=1 python setup.py sdist bdist_wheel
+ - name: Build sdist
+ run: python setup.py sdist
+
+ - name: Build wheel
+ run: DISABLE_SPEEDUPS=1 python setup.py bdist_wheel
- uses: actions/upload-artifact@v2
if: "github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')"