Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added release workflow #48

Merged
merged 7 commits into from
Aug 22, 2024
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
jobs:
build-wheels:
santacodes marked this conversation as resolved.
Show resolved Hide resolved
name: upload pybamm-cookie wheel artifacts
santacodes marked this conversation as resolved.
Show resolved Hide resolved
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
santacodes marked this conversation as resolved.
Show resolved Hide resolved

- name: Build package
run: pipx run build

- name: Upload artifacts
uses: actions/[email protected]
with:
name: pybamm_cookie_wheel
path: ./dist/*.whl
if-no-files-found: error
santacodes marked this conversation as resolved.
Show resolved Hide resolved

publish-pypi:
name: Upload package to PyPI
needs: [build-wheels]
santacodes marked this conversation as resolved.
Show resolved Hide resolved
agriyakhetarpal marked this conversation as resolved.
Show resolved Hide resolved
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write

steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
santacodes marked this conversation as resolved.
Show resolved Hide resolved

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0
with:
packages-dir: artifacts/
Loading