File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 24
24
python_version : ' 3.10'
25
25
pypi_token : ${{ secrets.PYPI_API_KEY }}
26
26
27
+ - name : Upload built artifacts
28
+ uses : actions/upload-artifact@v4
29
+ with :
30
+ name : dist
31
+ path : dist
32
+
27
33
create-release :
28
34
name : Create GitHub Release
29
35
runs-on : ubuntu-latest
@@ -35,13 +41,19 @@ jobs:
35
41
- name : Checkout code
36
42
uses : actions/checkout@v4
37
43
44
+ - name : Download built artifacts
45
+ uses : actions/download-artifact@v4
46
+ with :
47
+ name : dist
48
+ path : dist
49
+
38
50
- name : Release to GitHub
39
51
uses : softprops/action-gh-release@v2
40
52
with :
41
53
generate_release_notes : true
42
54
draft : false
43
55
prerelease : false
44
- files : " dist/*"
56
+ files : dist/*
45
57
46
58
build-and-publish-image :
47
59
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
5
5
[tool .poetry ]
6
6
name = " camel-ai"
7
- version = " 0.2.3a "
7
+ version = " 0.2.3a1 "
8
8
authors = [" CAMEL-AI.org" ]
9
9
description = " Communicative Agents for AI Society Study"
10
10
readme = " README.md"
You can’t perform that action at this time.
0 commit comments