2020-06-02 00:08:19 +08:00
|
|
|
# Current steps for a release
|
2020-02-28 05:44:45 +08:00
|
|
|
|
2021-09-07 23:50:55 +08:00
|
|
|
1. Update CHANGELOG.md
|
|
|
|
2. Tag
|
|
|
|
3. Push everything
|
|
|
|
4. Wait for the github workflows to complete
|
|
|
|
5. Download and verify the correct version of one of the binaries
|
|
|
|
6. Finish the draft release and publish.
|
|
|
|
7. Check gotop-builder for a successful everything build; if successful, publish.
|
|
|
|
8. Notify Nix
|
|
|
|
9. ~~Notify Homebrew~~ ~~Automated now.~~ Automation broke. Notify manually.
|
|
|
|
10. Do the Arch release.
|
|
|
|
1. cd actions/arch-package
|
|
|
|
2. VERSION=v4.1.2 ./run.sh
|
2020-03-03 19:47:52 +08:00
|
|
|
|
2020-06-02 00:08:19 +08:00
|
|
|
## Nix
|
|
|
|
|
|
|
|
I haven't yet figured this out, so currently just file a ticket and hope somebody on that end updates the package.
|
|
|
|
|
2020-03-03 19:47:52 +08:00
|
|
|
Nix adds new and interesting complexities to the release.
|
|
|
|
|
2020-04-16 21:14:13 +08:00
|
|
|
0. Download the gotop src package; run sha256 on it to get the hash
|
2020-03-03 19:47:52 +08:00
|
|
|
1. cd to the nixpkgs directory
|
2020-04-16 21:14:13 +08:00
|
|
|
2. Update the sha256 hash in `pkgs/tools/system/gotop/default.nix`
|
|
|
|
2. `docker run -it --rm --mount type=bind,source="\$(pwd)",target=/mnt nixos/nix sh`
|
|
|
|
3. `cd /mnt`
|
|
|
|
8. install & run vgo2nix to update deps.nix
|
|
|
|
7. `nix-build -A gotop`
|
2020-06-08 07:12:04 +08:00
|
|
|
8. When it fails, ...
|