From e966f24ea6aa5fac87794ecaa8fe9a17f0d4f176 Mon Sep 17 00:00:00 2001 From: David Zager Date: Fri, 7 Jun 2024 12:56:31 -0400 Subject: [PATCH] :seedling: must build whole bundle for operator ci Signed-off-by: David Zager --- .github/workflows/pr-ci.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr-ci.yml b/.github/workflows/pr-ci.yml index 35e6de3..9a6e337 100644 --- a/.github/workflows/pr-ci.yml +++ b/.github/workflows/pr-ci.yml @@ -30,24 +30,26 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout PR branch - uses: actions/checkout@v2 - + uses: actions/checkout@v4 - name: Ansible Lint uses: ansible/ansible-lint-action@main with: path: "roles/" - build-operator: + build-operator-bundle: needs: detect-changes runs-on: ubuntu-latest env: IMG: ttl.sh/konveyor-operator-${{ github.sha }}:2h + BUNDLE_IMG: ttl.sh/konveyor-operator-bundle-${{ github.sha }}:2h steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: make docker-build docker-push + - run: make bundle-build bundle-push + run-ci: - needs: build-operator + needs: build-operator-bundle uses: konveyor/ci/.github/workflows/global-ci-bundle.yml@main with: - operator: ttl.sh/konveyor-operator-${{ github.sha }}:2h + operator_bundle: ttl.sh/konveyor-operator-bundle-${{ github.sha }}:2h