From 3aa121d9da2c5d8a7318873963746f897412e304 Mon Sep 17 00:00:00 2001 From: kekskurse Date: Thu, 31 Jul 2025 22:37:16 +0200 Subject: [PATCH] docs: change goreleaser info --- .goreleaser.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index dc48785..e8b74b3 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -117,29 +117,20 @@ release: ## Installation ### Binary Installation - Download the appropriate binary for your system from the assets above. + Download the appropriate binary for your system from the assets below. - ### Debian/Ubuntu (.deb package) ```bash - wget https://git.keks.cloud/kekskurse/scron/releases/download/{{ .Tag }}/scron_{{ .Version }}_linux_amd64.deb sudo dpkg -i scron_{{ .Version }}_linux_amd64.deb ``` ### RPM-based systems (.rpm package) ```bash - wget https://git.keks.cloud/kekskurse/scron/releases/download/{{ .Tag }}/scron_{{ .Version }}_linux_amd64.rpm sudo rpm -i scron_{{ .Version }}_linux_amd64.rpm ``` ### Alpine Linux (.apk package) ```bash - wget https://git.keks.cloud/kekskurse/scron/releases/download/{{ .Tag }}/scron_{{ .Version }}_linux_amd64.apk sudo apk add --allow-untrusted scron_{{ .Version }}_linux_amd64.apk ``` - ## Quick Start - - 1. Edit configuration: `/etc/scron/config.yml` (for package installs) or `config.yml` (for binary) - 2. Start the service: `sudo systemctl start scron` (package) or `./scron` (binary) - 3. View logs: `sudo journalctl -u scron -f` (package) or check stdout (binary) name_template: "{{.ProjectName}}-v{{.Version}}"