Skip to content

Commit a3caad2

Browse files
committed
Feat: release.md file
1 parent bae9ea7 commit a3caad2

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

RELEASE.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Coolify Release Guide
2+
3+
This guide outlines the release process for Coolify, intended for developers and those interested in understanding how releases are managed and deployed.
4+
5+
## Release Process
6+
7+
1. **Development on `next` branch**
8+
- Changes and new features are developed on the `next` or even separate branches.
9+
10+
2. **Merging to `main`**
11+
- Once changes are ready, they are merged from `next` into the `main` branch.
12+
13+
3. **Building the release**
14+
- After merging to `main`, a new release is built.
15+
- Note: A push to `main` does not automatically mean a new version is released.
16+
17+
4. **Creating a GitHub release**
18+
- A new release is created on GitHub, which generates new version images.
19+
- Note: This does not mean the version is released.
20+
21+
5. **Updating the CDN**
22+
- The final step is updating the version information on the CDN:
23+
[https://cdn.coollabs.io/coolify/versions.json](https://cdn.coollabs.io/coolify/versions.json)
24+
25+
> [!NOTE]
26+
> The CDN update may not occur immediately after the GitHub release. It can happen hours or even days later due to additional testing, stability checks, or potential hotfixes.
27+
28+
29+
## Version Availability
30+
31+
It's important to understand that a new version released on GitHub may not immediately become available for users to update (through manual or auto-update).
32+
33+
> [!IMPORTANT]
34+
> If you see a new release on GitHub but haven't received the update, it's likely because the CDN hasn't been updated yet. This is intentional and ensures stability and allows for hotfixes before the new version is officially released.
35+
36+
### Manually Update to Specific Versions
37+
38+
> [!WARNING]
39+
> Updating to unreleased versions is not recommended and may cause issues. Use at your own risk!
40+
41+
To update your Coolify instance to a specific (unreleased) version, use the following command:
42+
43+
```bash
44+
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash -s <version>
45+
```
46+
-> Replace `<version>` with the version you want to update to (for example `4.0.0-beta.332`).

0 commit comments

Comments
 (0)