Skip to content

Update changelog for 0.8.0 release (#75) #16

Update changelog for 0.8.0 release (#75)

Update changelog for 0.8.0 release (#75) #16

Workflow file for this run

name: Build and upload to PyPI
on:
push:
tags:
- "*"
release:
types:
- published
concurrency:
group: "${{ github.ref }}-${{ github.head_ref }}-${{ github.workflow }}"
cancel-in-progress: true
defaults:
run:
shell: bash -l {0}
jobs:
build_wheels_pyedr:
environment:
name: deploy
url: https://pypi.org/p/pyedr
permissions:
id-token: write
if: "github.repository == 'MDAnalysis/panedr'"
name: Build pure Python wheel - pyedr
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: install_deps
run: |
python -m pip install pipx
- name: install_and_build_pyedr
run: |
cd pyedr && python -m pip install build
python -m build --sdist --wheel --outdir ../dist/
- name: publish_pypi
if: github.event_name == 'release' && github.event.action == 'published'
uses: pypa/gh-action-pypi-publish@release/v1
build_wheels_panedr:
environment:
name: deploy
url: https://pypi.org/p/panedr
permissions:
id-token: write
if: "github.repository == 'MDAnalysis/panedr'"
name: Build pure Python wheel - panedr
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: install_deps
run: |
python -m pip install pipx
- name: install_and_build_panedr
run: |
cd panedr && python -m pip install build
python -m build --sdist --wheel --outdir ../dist/
- name: publish_pypi
if: github.event_name == 'release' && github.event.action == 'published'
uses: pypa/gh-action-pypi-publish@release/v1