From f270fa88fe81ef9875d0e30320796b9133b64ae0 Mon Sep 17 00:00:00 2001 From: Duncan Blythe Date: Sat, 2 Nov 2024 13:45:11 +0100 Subject: [PATCH] Fix workflows --- .github/workflows/ci_templates.yaml | 2 ++ .github/workflows/release.yaml | 4 ++-- VERSION | 2 +- superduper/__init__.py | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci_templates.yaml b/.github/workflows/ci_templates.yaml index 667b66834..65bcb880f 100644 --- a/.github/workflows/ci_templates.yaml +++ b/.github/workflows/ci_templates.yaml @@ -24,8 +24,10 @@ jobs: id: setup run: | if [[ "${{ github.base_ref }}" == "main" ]]; then + echo "mode=changed" echo "mode=changed" >> $GITHUB_ENV else + echo "mode=all" echo "mode=all" >> $GITHUB_ENV fi diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1212a433c..9cefaf177 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,8 +1,8 @@ -name: Release in Pypi/DockerHub +name: Release on PyPi on: push: branches: - - release-[0-9]+.[0-9]+.[0-9]+ + - '^[0-9]+.[0-9]+$' jobs: build: diff --git a/VERSION b/VERSION index 1d0ba9ea1..7618a2e74 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.0 +0.4.0.dev diff --git a/superduper/__init__.py b/superduper/__init__.py index a9adcb11f..0c496db82 100644 --- a/superduper/__init__.py +++ b/superduper/__init__.py @@ -9,7 +9,7 @@ logging = logger.Logging -__version__ = '0.4.0' +__version__ = '0.4.0.dev' from .base.decorators import code