mirror of
https://github.com/drone-plugins/github-actions
synced 2024-11-15 02:56:25 +01:00
13 lines
177 B
Bash
13 lines
177 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# force go modules
|
||
|
export GOPATH=""
|
||
|
|
||
|
# disable cgo
|
||
|
export CGO_ENABLED=0
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
# linux
|
||
|
GOOS=linux GOARCH=amd64 go build -o release/linux/amd64/plugin ./cmd
|