diff --git a/.github/workflows/docker+pypi.yml b/.github/workflows/docker+pypi.yml index 8442e5b2..8f14b09b 100644 --- a/.github/workflows/docker+pypi.yml +++ b/.github/workflows/docker+pypi.yml @@ -135,12 +135,7 @@ jobs: - name: Build a binary wheel and a source tarball run: >- - python -m - build - --sdist - --wheel - --outdir dist/ - . + python -m build --sdist --wheel --outdir dist/ . - name: Publish distribution package to Test PyPI uses: pypa/gh-action-pypi-publish@release/v1 @@ -170,19 +165,11 @@ jobs: - name: Install pypa/build run: >- - python -m - pip install - build - --user + python -m pip install build --user - name: Build a binary wheel and a source tarball run: >- - python -m - build - --sdist - --wheel - --outdir dist/ - . + python -m build --sdist --wheel --outdir dist/ . - name: Publish distribution package to Test PyPI uses: ngardiner/gh-action-pypi-publish-proxy@master @@ -214,7 +201,7 @@ jobs: python-version: 3.7 - name: Install pypa/build and build a binary wheel and a source tarball - run: >- + run: | python -m pip install --upgrade pip python -m pip install build --user python -m build --sdist --wheel --outdir dist/ .