File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 : |
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 :
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " ionic-langchain"
3- version = " 0.1.5 "
3+ version = " 0.1.6 "
44description = " "
55authors = [" Owen Sims <owen@ionicapi.com>" ]
66readme = " README.md"
You canβt perform that action at this time.
0 commit comments