Merge pull request #6400 from fidencio/topic/fixes-for-generating-the-kata-deploy-payload

workflows:  Fixes for the `payload-after-push` action
This commit is contained in:
Fabiano Fidêncio
2023-03-02 14:20:24 +01:00
committed by GitHub
4 changed files with 7 additions and 7 deletions

View File

@@ -75,7 +75,7 @@ jobs:
needs: create-kata-tarball
runs-on: ubuntu-latest
steps:
- name: Login to Confidential Containers quay.io
- name: Login to Kata Containers quay.io
uses: docker/login-action@v2
with:
registry: quay.io

View File

@@ -83,7 +83,7 @@ jobs:
needs: create-kata-tarball
runs-on: arm64
steps:
- name: Login to Confidential Containers quay.io
- name: Login to Kata Containers quay.io
uses: docker/login-action@v2
with:
registry: quay.io

View File

@@ -82,7 +82,7 @@ jobs:
needs: create-kata-tarball
runs-on: s390x
steps:
- name: Login to Confidential Containers quay.io
- name: Login to Kata Containers quay.io
uses: docker/login-action@v2
with:
registry: quay.io

View File

@@ -7,19 +7,19 @@ on:
jobs:
build-assets-amd64:
uses: ./.github/workflows/cc-payload-after-push-amd64.yaml
uses: ./.github/workflows/payload-after-push-amd64.yaml
with:
target-arch: amd64
secrets: inherit
build-assets-arm64:
uses: ./.github/workflows/cc-payload-after-push-arm64.yaml
uses: ./.github/workflows/payload-after-push-arm64.yaml
with:
target-arch: arm64
secrets: inherit
build-assets-s390x:
uses: ./.github/workflows/cc-payload-after-push-s390x.yaml
uses: ./.github/workflows/payload-after-push-s390x.yaml
with:
target-arch: s390x
secrets: inherit
@@ -31,7 +31,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Login to Confidential Containers quay.io
- name: Login to Kata Containers quay.io
uses: docker/login-action@v2
with:
registry: quay.io