25ad50a579
if normal settings `registry`, `username`... is set that's used as default, else first logins entry is used. ```yml settings: logins: - registry: https://codeberg.org username: "6543" password: geheim - registry: https://index.docker.io/v1/ username: a6543 password: anders_geheim ``` close #18 Reviewed-on: https://codeberg.org/woodpecker-plugins/plugin-docker-buildx/pulls/23 Reviewed-by: anbraten <anbraten@noreply.codeberg.org>
10 lines
130 B
Go
10 lines
130 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "golang.org/x/lint/golint"
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
)
|