chore(ci): switching to Github Actions

This commit is contained in:
Nicolas Carlier 2021-06-18 08:43:38 +00:00
parent ccd8c8fbff
commit 3b0863822c
3 changed files with 40 additions and 20 deletions

39
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,39 @@
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Test
run: make build test
- name: Distribution
run: make distribution
if: startsWith(github.ref, 'refs/tags/')
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
release/webhookd-linux-amd64.tgz
release/webhookd-linux-arm64.tgz
release/webhookd-linux-arm.tgz
release/webhookd-darwin-amd64.tgz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -1,19 +0,0 @@
language: go
go:
- '1.14'
script:
- make test
- make distribution
deploy:
provider: releases
api_key:
secure: m1wZFRioHw9vNQavd5y2XHVy6OU3V+xplrZEb4PGdCABX55b2mcMHe/5hgjskNaICSuc4++D6M00/dgiKmLiMqBJGS/0kllhMTCZIKXq1jMC8GqlrSKNW6NNJUI6YhhJkXoUBYMuk0epHZWA+TvVmarQnePryiUWqy2d8+X4UbE=
file:
- release/webhookd-linux-amd64.tgz
- release/webhookd-linux-arm64.tgz
- release/webhookd-linux-arm.tgz
- release/webhookd-darwin-amd64.tgz
skip_cleanup: true
on:
repo: ncarlier/webhookd
tags: true

View File

@ -1,6 +1,6 @@
# webhookd
[![Build Status](https://travis-ci.org/ncarlier/webhookd.svg?branch=master)](https://travis-ci.org/ncarlier/webhookd)
[![Build Status](https://github.com/ncarlier/webhookd/actions/workflows/build.yml/badge.svg)](https://github.com/ncarlier/webhookd/actions/workflows/build.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/ncarlier/webhookd)](https://goreportcard.com/report/github.com/ncarlier/webhookd)
[![Docker pulls](https://img.shields.io/docker/pulls/ncarlier/webhookd.svg)](https://hub.docker.com/r/ncarlier/webhookd/)
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/nunux)