From 6f9d7f6fd3b99c60bcc7965222d837bb3d43c400 Mon Sep 17 00:00:00 2001 From: Farkhod Sadykov Date: Sat, 6 Apr 2024 18:54:28 +0200 Subject: [PATCH] Fix version issue in release action, version bump --- .github/workflows/release.yml | 2 +- sgpt/__version__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3070d3b0..a18f2e94 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,7 +69,7 @@ jobs: name: python-package-distributions path: dist/ - name: Get ShellGPT version - run: >- + run: | echo "SGPT_VERSION=$(find dist -type f -name '*.tar.gz' | grep -oP '\d+.\d+.\d+')" >> $GITHUB_ENV echo "Release version $SGPT_VERSION" - name: Sign the dists with Sigstore diff --git a/sgpt/__version__.py b/sgpt/__version__.py index daa50c7c..aa56ed40 100644 --- a/sgpt/__version__.py +++ b/sgpt/__version__.py @@ -1 +1 @@ -__version__ = "1.4.2" +__version__ = "1.4.3"