Skip to content

Commit c9489a2

Browse files
committed
more clean up
1 parent 225848c commit c9489a2

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

server/README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,42 @@ This will:
2323

2424
# Deployment
2525

26+
## Quick Steps to Deploy
27+
28+
There are two common scenarios when deploying:
29+
30+
### 1. Deploying a New Patch Version (e.g., v0.29.1 → v0.29.2)
31+
32+
1. Commit and push your changes to the existing branch (e.g., `v0.29`).
33+
2. Create a new tag for the patch version:
34+
```bash
35+
git tag v0.29.2
36+
git push origin v0.29.2
37+
```
38+
[See tagging and deployment details below.](#tagging-and-deployment-strategy)
39+
3. GitHub Actions will deploy the new version, accessible at:
40+
`https://v0-29-2-dot-playground-server-dot-analytics-324114.de.r.appspot.com/liveness_check`
41+
42+
---
43+
44+
### 2. Deploying a New Minor/Major Version (e.g., v0.29.x → v0.32.x)
45+
46+
1. Create a new branch for the version, e.g., `v0.32`. [See branching details below.](#branching-strategy)
47+
2. Update the GitHub Actions workflow configuration to include this branch as a trigger. [See Github Actions details below](#github-actions-deployment-workflow).
48+
3. Commit and push your changes to this branch.
49+
4. Tag your commit with the new version:
50+
```bash
51+
git tag v0.32.1
52+
git push origin v0.32.1
53+
```
54+
[See tagging and deployment details below.](#tagging-and-deployment-strategy)
55+
5. GitHub Actions will deploy the new version, accessible at:
56+
`https://v0-32-1-dot-playground-server-dot-analytics-324114.de.r.appspot.com/liveness_check`
57+
58+
---
59+
60+
More detailed explanations of deployment, branching, and tagging strategies can be found in the sections that follow.
61+
2662
## Overview
2763

2864
This project uses **Google App Engine** for deployments. Each deployed version is managed intentionally using:

0 commit comments

Comments
 (0)