Skip to content

Commit aa0487f

Browse files
authored
Merge pull request #6 from onkernel/sayan/release-readme
Release notes
2 parents 4de1444 + c1b06d4 commit aa0487f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

KERNEL_README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,21 @@ After running the sync script:
4040
1. Resolve any merge conflicts
4141
2. Test the build to ensure compatibility
4242
3. Push the changes and create a PR for review
43+
44+
## Releasing New Images
45+
46+
We have github actions that will build and publish images to [ghcr](./.github/workflows/ghcr.yml)
47+
48+
### Picking a tag
49+
50+
Tags are structured as `v$UPSTREAM-v$INTERNAL` (e.g. `v3.0.6-v1.0.1`)
51+
52+
- If you've sync'ed the upstream use the [latest upstream tag](https://github.com/m1k1o/neko/tags) and update the `upstream` tag. (using our example, `v3.0.7-v1.0.1`)
53+
- Otherwise use the latest [internal tag](https://github.com/onkernel/neko/tags) and bump the `internal` tag following semantic versioning (e.g. `v3.0.6-v1.2.0`)
54+
55+
### Tag and push
56+
57+
```bash
58+
git tag $TAG
59+
git push origin $TAG
60+
```

0 commit comments

Comments
 (0)