0ab16e11b8
This commit bumps the Golang toolchain version used to build Kilo to go 1.16 to support builing kgctl for the arm64 M1 macs. Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
22 lines
512 B
YAML
22 lines
512 B
YAML
on:
|
|
release:
|
|
types: [created]
|
|
name: Handle Release
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.16.5
|
|
- name: Make Directory with 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-*'
|