You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This allows us to know at runtime the
version of HookOS. Also, modified the
prompt to contain the version so that
when sharing screenshots to debug it
will be clear the Hook version.
Turned down the kernel.printk log level
to warning (4) so that the console getty
doesn't get messy with kernel messages.
Better UX (hopefully). A side affect of this
is that we won't see messages anymore on the
console for when workflow action containers run.
Syslog messages will still be sent to Boots.
Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>
Copy file name to clipboardExpand all lines: RELEASING.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,20 @@
1
1
# Releasing
2
2
3
-
## Process
4
-
5
3
For version v0.x.y:
6
4
5
+
## Prerequisites
6
+
7
+
1. Update the `VERSION`, `VERSION_ID`, and `PRETTY_NAME` values in the `hook.yaml` file under `files -> "- path: etc/os-release"` to use `0.x.y`. This can be done with:
8
+
9
+
```bash
10
+
make update-os-release NEW_VERSION=0.x.y
11
+
```
12
+
13
+
1. Commit, push, PR, and merge the version changes
14
+
- `git commit -sm "Update version to v0.x.y" hook.yaml`
15
+
16
+
## Release Process
17
+
7
18
1. Create the annotated tag
8
19
> NOTE: To use your GPG signature when pushing the tag, use `SIGN_TAG=1 ./contrib/tag-release.sh v0.x.y` instead
0 commit comments