a6d50a8046
Currently,the job to build kgctl binaries is named `linux`, which suggests to the reader that the job is only building binaries for Linux, when it is in fact building binaries for Linux, Darwin, and Windows. Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
22 lines
498 B
YAML
22 lines
498 B
YAML
on:
|
|
release:
|
|
types: [created]
|
|
name: Handle Release
|
|
jobs:
|
|
kgctl:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17.1
|
|
- name: Build kgctl Binaries to Be Released
|
|
run: make release
|
|
- name: Publish Release
|
|
uses: skx/github-action-publish-binaries@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
args: 'bin/release/kgctl-*'
|