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}}"