4 Commits

Author SHA1 Message Date
Joachim Hill-Grannec
7533ed95ad update for CGO 2022-08-23 10:11:21 -06:00
Joachim Hill-Grannec
98bb4e4ba4 explicitly target linux amd64 2022-08-23 09:31:37 -06:00
Joachim Hill-Grannec
e07eb1399b Merge pull request #112 from navi86/fix-folder-issue
fix issue
2022-08-23 08:07:59 -06:00
Ivan Krylov
9a9987eeb2 fix issue 2022-08-23 12:41:12 +01:00

View File

@@ -2,6 +2,9 @@ kind: pipeline
type: docker type: docker
name: default name: default
platform:
os: linux
arch: amd64
steps: steps:
- name: test - name: test
@@ -16,7 +19,7 @@ steps:
- name: build - name: build
image: golang:1.13 image: golang:1.13
commands: commands:
- go build -o build/drone-helm cmd/drone-helm/main.go - GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o build/drone-helm cmd/drone-helm/main.go
- name: publish_linux_amd64 - name: publish_linux_amd64
image: plugins/docker image: plugins/docker
settings: settings: