Skip to content

Commit

Permalink
pypa actions update
Browse files Browse the repository at this point in the history
  • Loading branch information
ngardiner committed Mar 12, 2024
1 parent d6f8730 commit 5c1b9a0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/docker+pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ jobs:
steps:
- name: Check out Repository
uses: actions/checkout@v3
with:
path: ./pypi-dev

- name: Set up Python 3.7
uses: actions/setup-python@v4
Expand Down Expand Up @@ -220,13 +218,16 @@ jobs:
python-version: 3.7

- name: Install pypa/build
run: python -m pip install build --user
run: |
python -m pip install build --user
- name: Install wheel
run: python -m pip install wheel --user
run: |
python -m pip install wheel --user
- name: Build a binary wheel and a source tarball
run: python -m build --sdist --wheel --outdir dist/ .
run: |
python -m build --sdist --wheel --outdir dist/ .
- name: Publish distribution package to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down

0 comments on commit 5c1b9a0

Please sign in to comment.