Skip to content

Add step to flatten distribution packages #78

Add step to flatten distribution packages

Add step to flatten distribution packages #78

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
branches:
- master
push:
branches:
- master
tags: '*'
release:
types:
- published
jobs:
test:
name: chembl_structure_pipeline (${{ matrix.os }}, ${{ matrix.python-version }}, ${{ matrix.rdkit-version }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
rdkit-version: ["2023.9.1"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest build rdkit==${{ matrix.rdkit-version }}
- name: Test with pytest
run: |
pytest --doctest-modules
- name: Build wheels
run: python -m build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: dist-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.rdkit-version }}
path: dist/*
upload_all:
name: Upload if release
runs-on: ubuntu-latest
needs: test
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Download artifacts from all matrix runs
uses: actions/download-artifact@v4
with:
path: dist
- name: Flatten dist packages
run: |
mkdir dist_flat
find dist -name "*.whl" -exec cp {} dist_flat/ \;
find dist -name "*.tar.gz" -exec cp {} dist_flat/ \;
- uses: pypa/gh-action-pypi-publish@v1.5.1
with:
user: __token__
password: ${{ secrets.pypi_password }}
packages_dir: dist_flat