From a6d50a8046d87d425b54aab5fa988d3ee1c733f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Wed, 13 Apr 2022 20:23:13 +0200 Subject: [PATCH] .github/workflows/release.yaml: clarify job name (#296) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4b4c0d2..66d7c01 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,7 @@ on: types: [created] name: Handle Release jobs: - linux: + kgctl: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -11,7 +11,7 @@ jobs: uses: actions/setup-go@v2 with: go-version: 1.17.1 - - name: Make Directory with kgctl Binaries to Be Released + - name: Build kgctl Binaries to Be Released run: make release - name: Publish Release uses: skx/github-action-publish-binaries@master