From 31c8454700c4a9c7b11e59816d36179da86f63ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 20 Aug 2021 17:06:53 +0200 Subject: [PATCH] workflows: fix artifact name in the release yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit b789a935cf69f1aa4bd8eda2cd3ac0b721f056ba changed the artifact name from "release-candidate" to "kata-static-tarball". However, we didn't do the same for the upload-static-tarball action, causing us the following error during the release process: https://github.com/kata-containers/kata-containers/runs/3383157459?check_suite_focus=true Fixes: #2475 Signed-off-by: Fabiano FidĂȘncio --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 956a30fc2..fc62d8083 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -113,7 +113,7 @@ jobs: - name: download-artifacts uses: actions/download-artifact@v2 with: - name: release-candidate + name: kata-static-tarball - name: install hub run: | HUB_VER=$(curl -s "https://api.github.com/repos/github/hub/releases/latest" | jq -r .tag_name | sed 's/^v//')