Skip to content

Commit 640c602

Browse files
author
Gregory M Kohler
authored
πŸ‘·β€β™‚οΈ [ION-285] adjust github expressions (#11)
* tidy expressions up think it all needs to be interpolated * 🏷️ poetry version patch need to verify new changes
1 parent c22a8c0 commit 640c602

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

β€Ž.github/workflows/release.ymlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Ensure valid tag reference
11-
if: ${{ github.ref_type != 'tag' }} || ${{ !startsWith(github.ref_name, 'v') }}
11+
if: ${{ github.ref_type != 'tag' || !startsWith(github.ref_name, 'v') }}
1212
uses: actions/github-script@v7
1313
with:
1414
script: |
@@ -33,7 +33,7 @@ jobs:
3333
# prefix with v to match tag convention
3434
run: poetry version -s | awk '{ print "version=v" $1 }' >> $GITHUB_OUTPUT
3535
- name: check library version
36-
if: ${{ steps.output-version.outputs.version }} != ${{ github.ref_name }}
36+
if: ${{ steps.output-version.outputs.version != github.ref_name }}
3737
id: check-version
3838
uses: actions/github-script@v7
3939
with:

β€Žpyproject.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ionic-langchain"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = ""
55
authors = ["Owen Sims <owen@ionicapi.com>"]
66
readme = "README.md"

0 commit comments

Comments
Β (0)