improved packaging

- use version in archive name
- "macOS" instead of "Darwin"
- include example config in archives
- use subdir in archives
This commit is contained in:
Philipp Wolfer 2023-11-28 10:01:35 +01:00
parent d96df4367d
commit cde9b28c28
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
5 changed files with 17 additions and 5 deletions

View file

@ -11,7 +11,13 @@ tasks:
go test -v ./...
- build: |
cd scotty
goreleaser release --snapshot --clean
GIT_REF=$(git describe --always)
if [[ "$GIT_REF" =~ ^v[0-9]+\.[0-9]+(\.[0-9]+)?$ ]]
then
goreleaser release --clean
else
goreleaser release --snapshot --clean
fi
- publish-redirect: |
# Update redirect on https://go.uploadedlobster.com/scotty
./scotty/pages/publish.sh

View file

@ -31,12 +31,14 @@ archives:
- format: tar.gz
# this name template makes the OS and Arch compatible with the results of `uname`.
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{ .ProjectName }}-{{ .Version }}_
{{- if eq .Os "darwin" }}macos
{{- else }}{{ .Os }}{{ end }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
wrap_in_directory: true
# use zip for windows archives
format_overrides:
- goos: windows
@ -44,6 +46,10 @@ archives:
files:
- COPYING
- README.md
- config.example.toml
release:
disable: true
# changelog:
# sort: asc

View file

@ -28,7 +28,7 @@ This requires `go` to be installed on your system. You can get it from https://g
## Configuration
Scotty requires the configuration of the services in a configuration file in TOML format. See [scotty.example.toml](./scotty.example.toml) for details.
Scotty requires the configuration of the services in a configuration file in TOML format. See [config.example.toml](./config.example.toml) for details.
## Usage

2
go.mod
View file

@ -9,6 +9,7 @@ require (
github.com/glebarez/sqlite v1.10.0
github.com/go-resty/resty/v2 v2.10.0
github.com/jarcoal/httpmock v1.3.1
github.com/shkh/lastfm-go v0.0.0-20191215035245-89a801c244e0
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.17.0
github.com/stretchr/testify v1.8.4
@ -44,7 +45,6 @@ require (
github.com/rivo/uniseg v0.4.4 // indirect
github.com/sagikazarmark/locafero v0.3.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/shkh/lastfm-go v0.0.0-20191215035245-89a801c244e0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.10.0 // indirect
github.com/spf13/cast v1.5.1 // indirect