.github/workflows/release.yaml: clarify job name

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>
This commit is contained in:
Lucas Servén Marín 2022-04-13 16:36:16 +02:00
parent 0dfb744630
commit 2fae1b7a66
No known key found for this signature in database
GPG Key ID: 586FEAF680DA74AD

View File

@ -3,7 +3,7 @@ on:
types: [created] types: [created]
name: Handle Release name: Handle Release
jobs: jobs:
linux: kgctl:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@ -11,7 +11,7 @@ jobs:
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: 1.17.1 go-version: 1.17.1
- name: Make Directory with kgctl Binaries to Be Released - name: Build kgctl Binaries to Be Released
run: make release run: make release
- name: Publish Release - name: Publish Release
uses: skx/github-action-publish-binaries@master uses: skx/github-action-publish-binaries@master