-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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/[email protected] | ||
|
@@ -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: | ||
|