From 3c2b304f1915f94e713bf5b560669000de56b5a0 Mon Sep 17 00:00:00 2001 From: Andrew Grigorev Date: Tue, 10 Sep 2024 12:37:21 +0300 Subject: [PATCH] Test 0.5.4rc1 release --- .github/workflows/release.yml | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2268988..ab17e6e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -75,7 +75,7 @@ jobs: github-release: name: Release on GitHub needs: test - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') + if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/test-v') runs-on: ubuntu-latest environment: name: GitHub @@ -86,7 +86,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Extract Version from Tag - run: echo "VERSION_FROM_GIT_REF=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV + run: echo "VERSION_FROM_GIT_REF=${GITHUB_REF#refs/heads/test-v}" >> $GITHUB_ENV - name: Extract Version from pyproject.toml run: | pip install toml diff --git a/pyproject.toml b/pyproject.toml index 7f9e244..45d0d37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "flask-shell-ipython" -version = "0.5.3" +version = "0.5.4rc1" description = "Replace default `flask shell` command by similar command running IPython." readme = "README.md" readme-content-type = "text/markdown"