Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add release pipeline #64

Merged
merged 1 commit into from
Apr 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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