Skip to content

Commit

Permalink
workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gasse committed Mar 11, 2024
1 parent c463b35 commit e15b887
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,14 @@ jobs:
- name: Install pypa/build
run: python3 -m pip install build --user

- name: Build a binary wheel and a source tarball
run: python3 -m build core
- name: Build a binary wheel and a source tarball (core)
run: python3 -m build core/ --outdir dist/

- name: Build a binary wheel and a source tarball (miniwob)
run: python3 -m build miniwob/ --outdir dist/

- name: Build a binary wheel and a source tarball (webarena)
run: python3 -m build webarena/ --outdir dist/

- name: Store the distribution packages
uses: actions/upload-artifact@v4
Expand All @@ -45,7 +51,6 @@ jobs:
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/

- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand All @@ -65,7 +70,6 @@ jobs:
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/

- name: Sign the dists with Sigstore
uses: sigstore/gh-action-sigstore-python@v1.2.3
Expand Down Expand Up @@ -112,7 +116,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/

- name: Publish distribution 📦 to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit e15b887

Please sign in to comment.