Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mogost committed Jul 20, 2020
1 parent cac219d commit 97b0898
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish on PyPi

on:
push:
tags:
- 'v*'

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade setuptools wheel
python setup.py sdist bdist_wheel
- name: pypi-publish
uses: pypa/gh-action-pypi-publish@v1.3.1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
- name: Upload packages
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
setup(
name='sgqlc_schemas',
packages=setuptools.find_packages(),
version='0.1.0b1',
version='0.1.0b2',
description='A set of schemas for sgqlc package',
author='Alexandr Artemyev',
author_email='mogost@aartemyev.ru',
Expand Down

0 comments on commit 97b0898

Please sign in to comment.