Added release workflow #5
Workflow file for this run
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
jobs: | |
build-wheels: | |
name: upload pybamm-cookie wheel artifacts | |
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/upload-artifact@v4.3.6 | |
with: | |
name: pybamm_cookie_wheel | |
path: ./dist/*.whl | |
if-no-files-found: error | |
publish-pypi: | |
name: Upload package to PyPI | |
needs: [build-wheels] | |
runs-on: ubuntu-latest | |
environment: release | |
permissions: | |
id-token: write | |
steps: | |
- name: Download all artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
path: artifacts | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 | |
with: | |
packages-dir: artifacts/ |