Compare commits

..

No commits in common. "f9330eff0be4474f16735682840784424b4f1cc4" and "37a789f78d575193920a5e5906f933f8cc3aeb34" have entirely different histories.

3 changed files with 3 additions and 4 deletions

1
.gitignore vendored
View file

@ -20,4 +20,3 @@
.secrets
build/*
.DS_Store

View file

@ -1,11 +1,11 @@
pipeline:
test:
image: golang:1.20
image: golang:1.13
commands:
- go test ./cmd/... ./internal/...
- go vet ./cmd/... ./internal/...
build:
image: golang:1.20
image: golang:1.13
commands:
- GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o build/drone-helm cmd/drone-helm/main.go
docker:

View file

@ -1,4 +1,4 @@
FROM alpine/helm:3.13.1
FROM alpine/helm:3.12.3
COPY build/drone-helm /bin/drone-helm
COPY assets/kubeconfig.tpl /root/.kube/config.tpl