Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/github-script@v7
with:
script: |
core.notice('you can only run the publish workflow from a release tag (vX.Y.Z)')
core.setFailed('you can only run the publish workflow from a release tag (vX.Y.Z)')
- name: Checkout repository
uses: actions/checkout@v4
with:
Expand All @@ -38,11 +38,11 @@ jobs:
uses: actions/github-script@v7
with:
script: |
core.notice('library version does not match the github tag')
core.setFailed('library version does not match the github tag')
- name: Build release
id: build-release
run: poetry build
- name: Publish version to PyPI
id: publish-release
run: poetry publish -u __token__ -p ${{ secrets.PYPI_API_TOKEN }} --dry-run
run: poetry publish -u __token__ -p ${{ secrets.PYPI_API_TOKEN }}

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ionic-langchain"
version = "0.1.4"
version = "0.1.5"
description = ""
authors = ["Owen Sims <owen@ionicapi.com>"]
readme = "README.md"
Expand Down