mirror of
https://github.com/danielgormly/drone-plugin-kube.git
synced 2026-06-14 05:12:25 +08:00
11 lines
221 B
Python
Executable File
11 lines
221 B
Python
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eou pipefail
|
|
|
|
rm -rf built/
|
|
|
|
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o built/kubano
|
|
|
|
docker build -t polygonio/sandbox:drone-plugin-kube .
|
|
docker push polygonio/sandbox:drone-plugin-kube
|