Skip to content

MethSCAn 1.0.2 - link publication and website; crash on empty bed file #2

MethSCAn 1.0.2 - link publication and website; crash on empty bed file

MethSCAn 1.0.2 - link publication and website; crash on empty bed file #2

Workflow file for this run

# This workflow automatically releases the package to PyPI
# whenever a new GitHub release is created.
# So only create a new release when all tests were successful!
name: Upload package to PyPI
on:
release:
types: [published]
# Use "trusted publishing", see https://docs.pypi.org/trusted-publishers/
jobs:
release:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/MethSCAn
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
with:
filter: blob:none
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: "pip"
- name: Install build tools
run: |
python -m pip install --upgrade pip
python -m pip install build twine
- name: Build package
run: |
python -m build
twine check dist/*
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1