Skip to content

Commit

Permalink
Update multiline formatting for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ngardiner committed Mar 12, 2024
1 parent 9a67b48 commit 4b1818e
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions .github/workflows/docker+pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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/ .
Expand Down

0 comments on commit 4b1818e

Please sign in to comment.