Skip to content

Commit

Permalink
version bump and add publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfG committed Jun 12, 2020
1 parent bf7feef commit ff4a8d7
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish

on:
release:
types: [created]

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
# - name: Build and publish to PyPI
# env:
# TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
# TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
# run: |
# python setup.py sdist bdist_wheel
# twine upload dist/*

- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: python-package
path: dist/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='ms2rescore',
version='0.2.1',
version='0.2.2',
description='MS²ReScore: PSM rescoring with predicted MS² peak intensities.',
author='Ana Sílvia C. Silva',
author_email='[email protected]',
Expand Down

0 comments on commit ff4a8d7

Please sign in to comment.