workflows: Fix the path of imported workflows

In `payload-after-push.yaml` we ended up mentioning cc-*.yaml workflows,
which are non existent in the main branch.

Let's adapt the name to the correct ones.

Fixes: #6343

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
Fabiano Fidêncio 2023-03-02 10:18:10 +01:00
parent e07162e79d
commit 7d292d7fc3

View File

@ -7,19 +7,19 @@ on:
jobs: jobs:
build-assets-amd64: build-assets-amd64:
uses: ./.github/workflows/cc-payload-after-push-amd64.yaml uses: ./.github/workflows/payload-after-push-amd64.yaml
with: with:
target-arch: amd64 target-arch: amd64
secrets: inherit secrets: inherit
build-assets-arm64: build-assets-arm64:
uses: ./.github/workflows/cc-payload-after-push-arm64.yaml uses: ./.github/workflows/payload-after-push-arm64.yaml
with: with:
target-arch: arm64 target-arch: arm64
secrets: inherit secrets: inherit
build-assets-s390x: build-assets-s390x:
uses: ./.github/workflows/cc-payload-after-push-s390x.yaml uses: ./.github/workflows/payload-after-push-s390x.yaml
with: with:
target-arch: s390x target-arch: s390x
secrets: inherit secrets: inherit