We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cb5ab9 commit 39ffec6Copy full SHA for 39ffec6
.github/workflows/publish.yml
@@ -22,7 +22,7 @@ jobs:
22
- uses: actions/checkout@v3
23
- name: Get version defined
24
id: version
25
- run: echo "::set-output name=version::$(cat ./pyagentmesh/VERSION |awk -F'"' '{print $(NF-1)}')"
+ run: echo "version=$(cat ./pyagentmesh/VERSION | awk -F'"' '{print $(NF-1)}')" >> $GITHUB_OUTPUT
26
27
- name: Bump version and push tag
28
id: tag_version
pyproject.toml
@@ -3,6 +3,8 @@ name = "pyagentmesh"
3
version = "0.0.1"
4
description = "Orchestration Framework for Multi-Agent and Micro-Agent"
5
authors = ["eric-epsilla <[email protected]>"]
6
+readme = "README.md"
7
+long_description_content_type = "text/markdown"
8
9
[tool.poetry.dependencies]
10
python = "^3.10"
0 commit comments