Skip to content

Commit 6706d5c

Browse files
authored
Merge pull request #2 from epsilla-cloud/dev
update workflow
2 parents a0421e1 + b6554fa commit 6706d5c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v3
2323
- name: Get version defined
2424
id: version
25-
run: echo "version=$(cat ./agenticmesh/VERSION | awk -F'"' '{print $(NF-1)}')" >> $GITHUB_OUTPUT
25+
run: echo "version=$(cat ./pyproject.toml | grep version | awk -F'"' '{print $(NF-1)}')" >> $GITHUB_OUTPUT
2626

2727
- name: Bump version and push tag
2828
id: tag_version
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install dependencies and build for pyagentmesh
5454
run: |
5555
sed -i 's/name = "agenticmesh"/name = "pyagentmesh"/' pyproject.toml
56-
sed -i 's/agenticmesh/pyagentmesh/' setup.py
56+
sed -i 's/name="agenticmesh"/name="pyagentmesh"/' setup.py
5757
python -m build --sdist --wheel --outdir dist/ .
5858
5959
- name: Publish distribution to PyPI

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 = "agenticmesh"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "Orchestration Framework for Multi-Agent and Micro-Agent"
55
authors = ["eric-epsilla <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)