workflows: Properly set the kata-tarball architecture

Let's make sure the kata-tarball architecture upload / downloaded / used
is exactly the same one that we need as part of the architecture we're
using to generate the image.

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
Fabiano Fidêncio 2023-03-06 11:30:27 +01:00
parent 76b4591e2b
commit dbae281924
2 changed files with 8 additions and 8 deletions

View File

@ -45,7 +45,7 @@ jobs:
- name: store-artifact ${{ matrix.asset }}
uses: actions/upload-artifact@v3
with:
name: kata-artifacts
name: kata-artifacts-amd64
path: kata-build/kata-static-${{ matrix.asset }}.tar.xz
retention-days: 1
if-no-files-found: error
@ -58,7 +58,7 @@ jobs:
- name: get-artifacts
uses: actions/download-artifact@v3
with:
name: kata-artifacts
name: kata-artifacts-amd64
path: kata-artifacts
- name: merge-artifacts
run: |
@ -66,7 +66,7 @@ jobs:
- name: store-artifacts
uses: actions/upload-artifact@v3
with:
name: kata-static-tarball
name: kata-static-tarball-amd64
path: kata-static.tar.xz
retention-days: 1
if-no-files-found: error
@ -86,7 +86,7 @@ jobs:
- name: get-kata-tarball
uses: actions/download-artifact@v3
with:
name: kata-static-tarball
name: kata-static-tarball-amd64
- name: build-and-push-kata-payload
id: build-and-push-kata-payload

View File

@ -49,7 +49,7 @@ jobs:
- name: store-artifact ${{ matrix.asset }}
uses: actions/upload-artifact@v3
with:
name: kata-artifacts
name: kata-artifacts-arm64
path: kata-build/kata-static-${{ matrix.asset }}.tar.xz
retention-days: 1
if-no-files-found: error
@ -66,7 +66,7 @@ jobs:
- name: get-artifacts
uses: actions/download-artifact@v3
with:
name: kata-artifacts
name: kata-artifacts-arm64
path: kata-artifacts
- name: merge-artifacts
run: |
@ -74,7 +74,7 @@ jobs:
- name: store-artifacts
uses: actions/upload-artifact@v3
with:
name: kata-static-tarball
name: kata-static-tarball-arm64
path: kata-static.tar.xz
retention-days: 1
if-no-files-found: error
@ -98,7 +98,7 @@ jobs:
- name: get-kata-tarball
uses: actions/download-artifact@v3
with:
name: kata-static-tarball
name: kata-static-tarball-arm64
- name: build-and-push-kata-payload
id: build-and-push-kata-payload