From 9bd55e675908cbf1cb0e041da4c610353ce0465d Mon Sep 17 00:00:00 2001 From: cotta-dev Date: Fri, 3 Apr 2026 00:39:14 +0900 Subject: [PATCH] chore: move release notes to docs/operations.md --- README.md | 7 ------- docs/operations.md | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 7 deletions(-) create mode 100644 docs/operations.md diff --git a/README.md b/README.md index a82718b..7027c24 100644 --- a/README.md +++ b/README.md @@ -144,12 +144,5 @@ File: `myserver_20251129_120000.log` ============================================================ ``` -## Release - -```bash -git tag v0.1.0 -git push origin v0.1.0 -``` - ## License Distributed under the MIT License. See LICENSE for more information. diff --git a/docs/operations.md b/docs/operations.md new file mode 100644 index 0000000..ea6b6c8 --- /dev/null +++ b/docs/operations.md @@ -0,0 +1,29 @@ +# Operations + +Personal notes for maintaining and releasing retri. + +## Release + +```bash +git tag v0.1.0 +git push origin v0.1.0 +``` + +Tag push triggers GoReleaser via GitHub Actions → publishes `.deb` (amd64/arm64) to GitHub Releases. + +## Update (on server) + +```bash +retri --update +``` + +## Manual Build (for testing before release) + +Trigger "Build and Release" workflow manually from GitHub Actions UI. +Downloads the dev `.deb` from the `dev` pre-release on the Releases page. + +## Install from .deb + +```bash +sudo apt-get install -y /tmp/retri_VERSION_amd64.deb +```