Skip to content

Commit

Permalink
Bump version, add release step
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed Jan 10, 2022
1 parent 53b89de commit 786d7ac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [ main ]
push:
branches: [ main ]
tags: [ 'v*' ]

jobs:
build-dist:
Expand All @@ -30,3 +31,10 @@ jobs:
name: dist
path: dist/
if-no-files-found: error

- name: Publish package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
2 changes: 1 addition & 1 deletion src/deephaven/plugin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import abc
from typing import Union, Type

__version__ = '0.0.1.dev0'
__version__ = '0.0.1.dev1'

DEEPHAVEN_PLUGIN_ENTRY_KEY = 'deephaven.plugin'
DEEPHAVEN_PLUGIN_REGISTRATION_CLASS = 'registration_cls'
Expand Down

0 comments on commit 786d7ac

Please sign in to comment.