mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-05 18:03:41 +00:00
chore(ci): switching to Github Actions
This commit is contained in:
parent
ccd8c8fbff
commit
3b0863822c
39
.github/workflows/build.yml
vendored
Normal file
39
.github/workflows/build.yml
vendored
Normal 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 }}
|
19
.travis.yml
19
.travis.yml
|
@ -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
|
|
@ -1,6 +1,6 @@
|
|||
# webhookd
|
||||
|
||||
[](https://travis-ci.org/ncarlier/webhookd)
|
||||
[](https://github.com/ncarlier/webhookd/actions/workflows/build.yml)
|
||||
[](https://goreportcard.com/report/github.com/ncarlier/webhookd)
|
||||
[](https://hub.docker.com/r/ncarlier/webhookd/)
|
||||
[](https://www.paypal.me/nunux)
|
||||
|
|
Loading…
Reference in New Issue
Block a user