mirror of
https://github.com/ehang-io/nps.git
synced 2025-07-05 06:40:43 +00:00
23 lines
315 B
YAML
23 lines
315 B
YAML
language: go
|
|
|
|
go:
|
|
- "1.13"
|
|
- dev
|
|
|
|
script:
|
|
|
|
before_install:
|
|
|
|
before_deploy:
|
|
- GOARCH=amd64 GOOS=linux go build cmd/nps/nps.go
|
|
- zip -r server_linux_amd64.zip nps conf web
|
|
|
|
deploy:
|
|
provider: releases
|
|
skip_cleanup: true
|
|
file:
|
|
- server_linux_amd64.zip
|
|
on:
|
|
tags: true
|
|
all_branches: true
|
|
go: 1.13 |