From 461632d8d34942c1f869d190c8850c56754f688d Mon Sep 17 00:00:00 2001 From: Devin Smith Date: Mon, 10 Jan 2022 15:10:20 -0800 Subject: [PATCH] Have tags trigger builds (#3) --- .github/workflows/build.yml | 1 + src/deephaven/plugin/matplotlib/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dbc9c7e..8f0402b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,6 +5,7 @@ on: branches: [ main ] push: branches: [ main ] + tags: [ 'v*' ] jobs: build-dist: diff --git a/src/deephaven/plugin/matplotlib/__init__.py b/src/deephaven/plugin/matplotlib/__init__.py index c590514..6fad3ca 100644 --- a/src/deephaven/plugin/matplotlib/__init__.py +++ b/src/deephaven/plugin/matplotlib/__init__.py @@ -1,6 +1,6 @@ from deephaven.plugin import Registration -__version__ = "0.0.1.dev4" +__version__ = "0.0.1.dev5" class MatplotlibRegistration(Registration): @classmethod