gha: ci: Fix tarball-suffix passed to the metrics tests

Instead of passing "-${{ inputs.tag }}-amd64", we must only pass
"-${{ inputs.tag }}".

This is a regression introduced by
106e305717.

Fixes: #7247

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
Fabiano Fidêncio 2023-07-07 11:47:51 +02:00
parent fa0f9954a1
commit c5b4164cb1

View File

@ -72,5 +72,5 @@ jobs:
needs: build-kata-static-tarball-amd64
uses: ./.github/workflows/run-metrics.yaml
with:
tarball-suffix: -${{ inputs.tag }}-amd64
tarball-suffix: -${{ inputs.tag }}
commit-hash: ${{ inputs.commit-hash }}