MethSCAn 1.1.0 - adds an option to merge VMRs/DMRs that are very close #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |