mirror of
https://github.com/OliveTin/OliveTin
synced 2025-10-30 12:57:06 +00:00
233 lines
6.1 KiB
YAML
233 lines
6.1 KiB
YAML
project_name: OliveTin
|
|
version: 2
|
|
before:
|
|
hooks:
|
|
- make service-prep
|
|
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
binary: OliveTin
|
|
main: main.go
|
|
dir: service
|
|
goos:
|
|
- linux
|
|
- windows
|
|
- darwin
|
|
- freebsd
|
|
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
- arm
|
|
- riscv64
|
|
|
|
goarm:
|
|
- 5 # For old RPIs
|
|
- 6
|
|
- 7
|
|
|
|
ignore:
|
|
- goos: darwin
|
|
goarch: arm # Mac does not work on [32bit] arm
|
|
|
|
- goos: windows
|
|
goarch: arm
|
|
|
|
- goos: windows # Does anyone use Windows on arm64?
|
|
goarch: arm64
|
|
|
|
ldflags:
|
|
- -s -w -X main.version={{.Version}} -X main.commit={{.ShortCommit}} -X main.date={{ .CommitDate }}
|
|
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
snapshot:
|
|
version_template: "{{ .Branch }}-{{ .ShortCommit }}"
|
|
changelog:
|
|
sort: asc
|
|
groups:
|
|
- title: 'Security'
|
|
regexp: '^.*?security(\([[:word:]]+\))??!?:.+$'
|
|
order: 0
|
|
- title: 'Features'
|
|
regexp: '^.*?feat.*?(\([[:word:]]+\))??!?:.+$'
|
|
order: 1
|
|
- title: 'Bug fixes'
|
|
regexp: '^.*?bugfix(\([[:word:]]+\))??!?:.+$'
|
|
order: 2
|
|
- title: Others
|
|
order: 999
|
|
filters:
|
|
exclude:
|
|
- '^docs:'
|
|
- '^test:'
|
|
- '^cicd:'
|
|
- '^refactor:'
|
|
|
|
archives:
|
|
- formats: tar.gz
|
|
files:
|
|
- config.yaml
|
|
- LICENSE
|
|
- README.md
|
|
- Dockerfile
|
|
- webui
|
|
- ./var/
|
|
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}{{ .Arm }}"
|
|
wrap_in_directory: true
|
|
format_overrides:
|
|
- goos: windows
|
|
formats: zip
|
|
|
|
dockers:
|
|
- image_templates:
|
|
- "docker.io/jamesread/olivetin:{{ .Tag }}-amd64"
|
|
- "ghcr.io/olivetin/olivetin:{{ .Tag }}-amd64"
|
|
dockerfile: Dockerfile
|
|
goos: linux
|
|
goarch: amd64
|
|
skip_push: false
|
|
build_flag_templates:
|
|
- "--platform=linux/amd64"
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
- "--label=org.opencontainers.image.version={{.Tag}}"
|
|
extra_files:
|
|
- webui
|
|
- var/entities/
|
|
- config.yaml
|
|
- var/helper-actions/
|
|
|
|
- image_templates:
|
|
- "docker.io/jamesread/olivetin:{{ .Tag }}-arm64"
|
|
- "ghcr.io/olivetin/olivetin:{{ .Tag }}-arm64"
|
|
dockerfile: Dockerfile.arm64
|
|
goos: linux
|
|
goarch: arm64
|
|
skip_push: false
|
|
build_flag_templates:
|
|
- "--platform=linux/arm64"
|
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
|
- "--label=org.opencontainers.image.version={{.Tag}}"
|
|
extra_files:
|
|
- webui
|
|
- var/entities/
|
|
- config.yaml
|
|
- var/helper-actions/
|
|
|
|
docker_manifests:
|
|
- name_template: docker.io/jamesread/olivetin:{{ .Version }}
|
|
image_templates:
|
|
- docker.io/jamesread/olivetin:{{ .Version }}-amd64
|
|
- docker.io/jamesread/olivetin:{{ .Version }}-arm64
|
|
|
|
- name_template: docker.io/jamesread/olivetin:latest
|
|
image_templates:
|
|
- docker.io/jamesread/olivetin:{{ .Version }}-amd64
|
|
- docker.io/jamesread/olivetin:{{ .Version }}-arm64
|
|
|
|
- name_template: docker.io/jamesread/olivetin:latest-3k
|
|
image_templates:
|
|
- docker.io/jamesread/olivetin:{{ .Version }}-amd64
|
|
- docker.io/jamesread/olivetin:{{ .Version }}-arm64
|
|
|
|
|
|
- name_template: ghcr.io/olivetin/olivetin:{{ .Version }}
|
|
image_templates:
|
|
- ghcr.io/olivetin/olivetin:{{ .Version }}-amd64
|
|
- ghcr.io/olivetin/olivetin:{{ .Version }}-arm64
|
|
|
|
- name_template: ghcr.io/olivetin/olivetin:latest
|
|
image_templates:
|
|
- ghcr.io/olivetin/olivetin:{{ .Version }}-amd64
|
|
- ghcr.io/olivetin/olivetin:{{ .Version }}-arm64
|
|
|
|
- name_template: ghcr.io/olivetin/olivetin:latest-3k
|
|
image_templates:
|
|
- ghcr.io/olivetin/olivetin:{{ .Version }}-amd64
|
|
- ghcr.io/olivetin/olivetin:{{ .Version }}-arm64
|
|
|
|
|
|
nfpms:
|
|
- id: default
|
|
maintainer: James Read <contact@jread.com>
|
|
description: OliveTin is a web interface for running Linux shell commands.
|
|
homepage: https://github.com/OliveTin/OliveTin
|
|
license: AGPL-3.0
|
|
formats:
|
|
- deb
|
|
- rpm
|
|
|
|
bindir: /usr/local/bin/
|
|
|
|
file_name_template: '{{ .PackageName }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}'
|
|
|
|
contents:
|
|
- src: var/systemd/OliveTin.service
|
|
dst: /etc/systemd/system/OliveTin.service
|
|
|
|
- src: webui/*
|
|
dst: /var/www/olivetin/
|
|
|
|
- src: config.yaml
|
|
dst: /etc/OliveTin/config.yaml
|
|
type: "config|noreplace"
|
|
|
|
- src: var/entities/*
|
|
dst: /etc/OliveTin/entities/
|
|
type: "config|noreplace"
|
|
|
|
- src: var/manpage/OliveTin.1.gz
|
|
dst: /usr/share/man/man1/OliveTin.1.gz
|
|
|
|
- id: openrc
|
|
maintainer: James Read <contact@jread.com>
|
|
description: OliveTin is a web interface for running Linux shell commands.
|
|
homepage: https://github.com/OliveTin/OliveTin
|
|
license: AGPL-3.0
|
|
formats:
|
|
- apk
|
|
|
|
bindir: /usr/local/bin/
|
|
|
|
file_name_template: '{{ .PackageName }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}'
|
|
|
|
contents:
|
|
- src: var/openrc/OliveTin
|
|
dst: /etc/init.d/OliveTin
|
|
|
|
- src: webui/*
|
|
dst: /var/www/olivetin/
|
|
|
|
- src: config.yaml
|
|
dst: /etc/OliveTin/config.yaml
|
|
type: "config|noreplace"
|
|
|
|
- src: var/entities/*
|
|
dst: /etc/OliveTin/entities/
|
|
type: "config|noreplace"
|
|
|
|
- src: var/manpage/OliveTin.1.gz
|
|
dst: /usr/share/man/man1/OliveTin.1.gz
|
|
|
|
release:
|
|
footer: |
|
|
## Container images (from GitHub)
|
|
|
|
- `docker pull ghcr.io/olivetin/olivetin:{{ .Version }}`
|
|
|
|
## Container images ([on Docker Hub](https://hub.docker.com/r/jamesread/olivetin/tags?page=1&ordering=last_updated))
|
|
|
|
- `docker pull docker.io/jamesread/olivetin:{{ .Version }}`
|
|
|
|
## Upgrade warnings, or breaking changes
|
|
|
|
- No such issues between the last release and this version.
|
|
|
|
## Useful links
|
|
|
|
- [Which download do I need?](https://docs.olivetin.app/install/choose_package.html)
|
|
- [Ask for help and chat with others users in the Discord community](https://discord.gg/jhYWWpNJ3v)
|
|
|
|
Thanks for your interest in OliveTin!
|