File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -13,3 +13,29 @@ uv run pytest
13
13
3 . Commit your changes
14
14
4 . Push to the branch
15
15
5 . Create a Pull Request
16
+
17
+ ## Releasing Agent Memory Server
18
+
19
+ Merging a PR to the main branch will trigger building and pushing a new image
20
+ to Docker Hub based on the commits in main (including the version number).
21
+ Currently, that image pushes to a test project:
22
+
23
+ https://hub.docker.com/r/andrewbrookins510/agent-memory-server
24
+
25
+
26
+ ## Releasing Agent Memory Client
27
+
28
+ For the client, the workflow is different. First, merge your PR to main.
29
+ Then tag a commit (from main) and push to a tag based on the format
30
+ ` client/vx.y.z-test ` or ` client/vx.y.z ` :
31
+
32
+ - Test PyPI: Use ` -test ` in the * version tag* . For example:
33
+ ```
34
+ $ git tag client/v0.9.0-b2-test
35
+ $ git push client/v0.9.0-b2-test
36
+ ```
37
+
38
+ - Production PyPI: Do not include ` -test ` in the version tag:
39
+ ```
40
+ $ git tag client/v0.9.0b2
41
+ $ git push client/v0.9.0b2
You can’t perform that action at this time.
0 commit comments