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 all 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
40 changes: 40 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
jobs:
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

- name: Build package
run: pipx run build

- name: Upload artifacts
uses: actions/[email protected]
with:
name: sdist_and_wheel
path: ./dist/*
if-no-files-found: error

publish-pypi:
name: Upload package to PyPI
needs: [build]
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
merge-multiple: true

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