diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..42f68ae --- /dev/null +++ b/.github/workflows/build.yml @@ -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 }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 22262b1..0000000 --- a/.travis.yml +++ /dev/null @@ -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 diff --git a/README.md b/README.md index 70b459d..b38cda8 100644 --- a/README.md +++ b/README.md @@ -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)