Compare commits
3 commits
03f4b70b9f
...
52a193353f
Author | SHA1 | Date | |
---|---|---|---|
52a193353f | |||
9c0463f7ae | |||
647ee916ae |
3 changed files with 48 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1 +1,4 @@
|
||||||
GoTomato
|
GoTomato
|
||||||
|
|
||||||
|
dist/
|
||||||
|
.forgejo_token
|
||||||
|
|
44
.goreleaser.yaml
Normal file
44
.goreleaser.yaml
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
|
||||||
|
|
||||||
|
version: 2
|
||||||
|
|
||||||
|
before:
|
||||||
|
hooks:
|
||||||
|
- rm -fr ./dist
|
||||||
|
- go mod tidy
|
||||||
|
|
||||||
|
builds:
|
||||||
|
- goos:
|
||||||
|
- linux
|
||||||
|
goarch:
|
||||||
|
- amd64
|
||||||
|
- arm64
|
||||||
|
env:
|
||||||
|
- CGO_ENABLED=0
|
||||||
|
|
||||||
|
upx:
|
||||||
|
- enabled: true
|
||||||
|
compress: best
|
||||||
|
lzma: true
|
||||||
|
|
||||||
|
changelog:
|
||||||
|
sort: asc
|
||||||
|
filters:
|
||||||
|
exclude:
|
||||||
|
- "bump version to"
|
||||||
|
|
||||||
|
archives:
|
||||||
|
- format: binary
|
||||||
|
|
||||||
|
release:
|
||||||
|
gitea:
|
||||||
|
owner: pomodoro
|
||||||
|
name: GoTomato
|
||||||
|
mode: replace
|
||||||
|
|
||||||
|
gitea_urls:
|
||||||
|
download: http://git.smsvc.net
|
||||||
|
api: http://git.smsvc.net/api/v1
|
||||||
|
|
||||||
|
env_files:
|
||||||
|
gitea_token: .forgejo_token
|
|
@ -2,5 +2,5 @@ package metadata
|
||||||
|
|
||||||
import "strings"
|
import "strings"
|
||||||
|
|
||||||
const GoTomatoVersion = "0.0.8" // The GoTomato version
|
const GoTomatoVersion = "0.1.1" // The GoTomato version
|
||||||
var ProtocolVersion = strings.Split(GoTomatoVersion, ".")[0] // The protocol version
|
var ProtocolVersion = strings.Split(GoTomatoVersion, ".")[0] // The protocol version
|
||||||
|
|
Loading…
Reference in a new issue