mirror of
https://github.com/ipedrazas/drone-helm.git
synced 2026-06-13 10:32:00 +08:00
9 lines
95 B
Bash
Executable File
9 lines
95 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export GOOS=linux
|
|
export GOARCH=386
|
|
go build
|
|
docker build -t drone-helm .
|