Skip to content

Commit

Permalink
Add release pipeline (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
v-byte-cpu committed Apr 30, 2021
1 parent 4863304 commit 9d02f3b
Showing 1 changed file with 36 additions and 2 deletions.
38 changes: 36 additions & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ kind: pipeline
type: docker
name: sx-ci

trigger:
branch:
- master
event:
- push
- tag
- pull_request

clone:
depth: 1

Expand Down Expand Up @@ -45,9 +53,35 @@ volumes:
- name: deps
temp: {}

---
kind: pipeline
type: docker
name: release

depends_on:
- sx-ci

trigger:
branch:
- master
event:
- push
- pull_request
- tag

clone:
depth: 1

steps:
- name: fetch
image: alpine/git
commands:
- git fetch --tags

- name: release
image: golang:1.16-alpine
environment:
GITHUB_TOKEN:
from_secret: github_token
commands:
- apk add libpcap-dev libc-dev gcc linux-headers curl git
- curl -s https://raw.githubusercontent.com/goreleaser/get/master/get | sh

0 comments on commit 9d02f3b

Please sign in to comment.