mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 08:31:03 +00:00
parent
bedde4a037
commit
03143598e9
1 changed files with 50 additions and 58 deletions
108
.goreleaser.yml
108
.goreleaser.yml
|
|
@ -32,6 +32,16 @@ builds:
|
||||||
- 386
|
- 386
|
||||||
ldflags:
|
ldflags:
|
||||||
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.buildSource=snap
|
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.buildSource=snap
|
||||||
|
- id: deb
|
||||||
|
goos:
|
||||||
|
- linux
|
||||||
|
goarch:
|
||||||
|
- amd64
|
||||||
|
- arm
|
||||||
|
- arm64
|
||||||
|
- 386
|
||||||
|
ldflags:
|
||||||
|
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.buildSource=deb
|
||||||
|
|
||||||
archives:
|
archives:
|
||||||
- builds:
|
- builds:
|
||||||
|
|
@ -45,6 +55,9 @@ archives:
|
||||||
format_overrides:
|
format_overrides:
|
||||||
- goos: windows
|
- goos: windows
|
||||||
format: zip
|
format: zip
|
||||||
|
- builds:
|
||||||
|
- deb
|
||||||
|
format: deb
|
||||||
|
|
||||||
checksum:
|
checksum:
|
||||||
name_template: "checksums.txt"
|
name_template: "checksums.txt"
|
||||||
|
|
@ -72,61 +85,40 @@ brews:
|
||||||
# Your app's description.
|
# Your app's description.
|
||||||
# Default is empty.
|
# Default is empty.
|
||||||
description: "A simple terminal UI for docker, written in Go"
|
description: "A simple terminal UI for docker, written in Go"
|
||||||
#snapcrafts:
|
|
||||||
# - builds:
|
nfpms:
|
||||||
# - snap
|
- id: deb
|
||||||
#
|
package_name: lazydocker
|
||||||
# replacements:
|
license: MIT
|
||||||
# linux: Linux
|
maintainer: "Jesse Duffield <jesse@duffield.com>"
|
||||||
# 386: x86
|
vendor: "Jesse Duffield"
|
||||||
# amd64: x86_64
|
homepage: "https://github.com/jesseduffield/lazydocker"
|
||||||
#
|
description: "A simple terminal UI for docker, written in Go"
|
||||||
# # Wether to publish the snap to the snapcraft store.
|
formats:
|
||||||
# # Remember you need to `snapcraft login` first.
|
- deb
|
||||||
# # Defaults to false.
|
dependencies:
|
||||||
# publish: false
|
- docker
|
||||||
#
|
- docker-compose
|
||||||
# # Single-line elevator pitch for your amazing snap.
|
|
||||||
# # 79 char long at most.
|
snapcrafts:
|
||||||
# summary: The lazier way to manage everything docker
|
- name: lazydocker
|
||||||
#
|
summary: A simple terminal UI for docker, written in Go
|
||||||
# # This the description of your snap. You have a paragraph or two to tell the
|
description: A simple terminal UI for docker, written in Go
|
||||||
# # most important story about your snap. Keep it under 100 words though,
|
confinement: strict
|
||||||
# # we live in tweetspace and your description wants to look good in the snap
|
grade: stable
|
||||||
# # store.
|
apps:
|
||||||
# description: 'A simple terminal UI for docker, written in Go'
|
lazydocker:
|
||||||
#
|
command: lazydocker
|
||||||
# # A guardrail to prevent you from releasing a snap to all your users before
|
plugs:
|
||||||
# # it is ready.
|
- network
|
||||||
# # `devel` will let you release only to the `edge` and `beta` channels in the
|
- network-bind
|
||||||
# # store. `stable` will let you release also to the `candidate` and `stable`
|
- docker
|
||||||
# # channels. More info about channels here:
|
parts:
|
||||||
# # https://snapcraft.io/docs/reference/channels
|
lazydocker:
|
||||||
# # TODO: reset to `stable` when we've been manually reviewed: https://forum.snapcraft.io/t/request-for-classic-confinement-for-lazydocker/12155
|
source: .
|
||||||
# grade: devel
|
plugin: go
|
||||||
#
|
go-importpath: github.com/jesseduffield/lazydocker
|
||||||
# # Snaps can be setup to follow three different confinement policies:
|
build-snaps:
|
||||||
# # `strict`, `devmode` and `classic`. A strict confinement where the snap
|
- go
|
||||||
# # can only read and write in its own namespace is recommended. Extra
|
build-packages:
|
||||||
# # permissions for strict snaps can be declared as `plugs` for the app, which
|
- git
|
||||||
# # are explained later. More info about confinement here:
|
|
||||||
# # https://snapcraft.io/docs/reference/confinement
|
|
||||||
# confinement: classic
|
|
||||||
#
|
|
||||||
# # Your app's license, based on SPDX license expressions: https://spdx.org/licenses
|
|
||||||
# # Default is empty.
|
|
||||||
# license: MIT
|
|
||||||
#
|
|
||||||
# # # Each binary built by GoReleaser is an app inside the snap. In this section
|
|
||||||
# # # you can declare extra details for those binaries. It is optional.
|
|
||||||
# # apps:
|
|
||||||
#
|
|
||||||
# # # The name of the app must be the same name as the binary built or the snapcraft name.
|
|
||||||
# # lazydocker:
|
|
||||||
#
|
|
||||||
# # # If your app requires extra permissions to work outside of its default
|
|
||||||
# # # confined space, declare them here.
|
|
||||||
# # # You can read the documentation about the available plugs and the
|
|
||||||
# # # things they allow:
|
|
||||||
# # # https://snapcraft.io/docs/reference/interfaces.
|
|
||||||
# # plugs: []
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue