mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-01 12:13:38 +00:00
5a00a6b32f
* Update drone to v1.x * Add GitHub Actions
20 lines
312 B
Go
20 lines
312 B
Go
kind: pipeline
|
|
type: docker
|
|
name: build
|
|
steps:
|
|
- name: build
|
|
image: golang:alpine
|
|
pull: if-not-exists # always never
|
|
environment:
|
|
KEY: VALUE
|
|
commands:
|
|
- echo $KEY
|
|
- pwd
|
|
- ls
|
|
- CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
|
|
- ./app
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|