forked from pybamm-team/pybamm-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Agriya Khetarpal <[email protected]>
- Loading branch information
1 parent
b5368c6
commit ae174ab
Showing
1 changed file
with
6 additions
and
7 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 |
---|---|---|
@@ -1,29 +1,27 @@ | ||
jobs: | ||
build-wheels: | ||
name: upload pybamm-cookie wheel artifacts | ||
build: | ||
name: Build and pybamm-cookie sdist and wheel | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout pybamm-cookie | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
|
||
- name: Build package | ||
run: pipx run build | ||
|
||
- name: Upload artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: pybamm_cookie_wheel | ||
path: ./dist/*.whl | ||
name: sdist_and_wheel | ||
path: ./dist/* | ||
if-no-files-found: error | ||
|
||
publish-pypi: | ||
name: Upload package to PyPI | ||
needs: [build-wheels] | ||
needs: [build] | ||
runs-on: ubuntu-latest | ||
environment: release | ||
permissions: | ||
|
@@ -34,6 +32,7 @@ jobs: | |
uses: actions/download-artifact@v4 | ||
with: | ||
path: artifacts | ||
merge-multiple: true | ||
|
||
- name: Publish to PyPI | ||
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 | ||
|