From 80c74aae0127e4592b0762aec50a44d172404757 Mon Sep 17 00:00:00 2001 From: Gregory Kohler Date: Wed, 3 Jan 2024 12:10:15 -0800 Subject: [PATCH 1/2] Revert "set workflow up for iterative testing" This reverts commit 49cc39f1aad62e3bfa37dad07d4ef7e608679323. --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 14abe39..a5e7242 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: @@ -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 }} From 2d63bd96df48e8415d63e504a7d0a481432d4c6f Mon Sep 17 00:00:00 2001 From: Gregory Kohler Date: Wed, 3 Jan 2024 14:55:13 -0800 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20bump=20version=20to?= =?UTF-8?q?=200.1.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit want to test the release guardrails --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8a11015..39d8639 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ionic-langchain" -version = "0.1.4" +version = "0.1.5" description = "" authors = ["Owen Sims "] readme = "README.md"