Skip to content

Commit

Permalink
Fix sdist build with unknown -q flag
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Jul 13, 2023
1 parent 4eac071 commit 6c8fcd5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy-sdist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
release:
types:
- published
push:
pull_request:

jobs:
test:
build_sdist:
runs-on: ubuntu-latest

steps:
Expand All @@ -15,7 +17,7 @@ jobs:

- name: Create sdist
shell: bash -l {0}
run: pip install -y build; python -m build -s
run: python -m pip install -q build; python -m build -s

- name: Publish package to PyPI
if: github.event.action == 'published'
Expand Down

0 comments on commit 6c8fcd5

Please sign in to comment.