From 3c68dbe9dfcf0c9dc83205301863c585736a53d0 Mon Sep 17 00:00:00 2001 From: Gregory Kohler Date: Wed, 3 Jan 2024 14:59:52 -0800 Subject: [PATCH 1/2] tidy expressions up think it all needs to be interpolated --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a5e7242..c3d55ed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Ensure valid tag reference - if: ${{ github.ref_type != 'tag' }} || ${{ !startsWith(github.ref_name, 'v') }} + if: ${{ github.ref_type != 'tag' || !startsWith(github.ref_name, 'v') }} uses: actions/github-script@v7 with: script: | @@ -33,7 +33,7 @@ jobs: # prefix with v to match tag convention run: poetry version -s | awk '{ print "version=v" $1 }' >> $GITHUB_OUTPUT - name: check library version - if: ${{ steps.output-version.outputs.version }} != ${{ github.ref_name }} + if: ${{ steps.output-version.outputs.version != github.ref_name }} id: check-version uses: actions/github-script@v7 with: From 6123313c19edb879fe3548cdd237da9e4e363173 Mon Sep 17 00:00:00 2001 From: Gregory Kohler Date: Wed, 3 Jan 2024 15:00:13 -0800 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20poetry=20version=20?= =?UTF-8?q?patch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit need to verify new changes --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 39d8639..0101ea9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ionic-langchain" -version = "0.1.5" +version = "0.1.6" description = "" authors = ["Owen Sims "] readme = "README.md"