mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-13 17:37:08 +00:00
56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
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.21
|
|
- name: Test
|
|
run: make build test
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
- name: Conventional CHANGELOG
|
|
id: changelog
|
|
uses: TriPSs/conventional-changelog-action@v3
|
|
if: github.ref == 'refs/heads/master'
|
|
with:
|
|
github-token: ${{ secrets.github_token }}
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.21
|
|
- name: Distribution
|
|
run: make distribution
|
|
if: github.ref == 'refs/heads/master' && steps.changelog.outputs.skipped == 'false'
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v1
|
|
if: github.ref == 'refs/heads/master' && steps.changelog.outputs.skipped == 'false'
|
|
with:
|
|
body: ${{ steps.changelog.outputs.clean_changelog }}
|
|
tag_name: ${{ steps.changelog.outputs.tag }}
|
|
name: ${{ steps.changelog.outputs.tag }}
|
|
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 }}
|