| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- 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: '^.*?fix(\([[: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-2k
- 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-2k
- 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:
- make_latest: false
- 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!
|