diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 14ed79251..6bfc0588b 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -26,8 +26,22 @@ on: required: true jobs: + wait-for-images: + runs-on: ubuntu-latest + strategy: + matrix: + image: [infra-server, infra-certifier] + steps: + - name: Wait for image + uses: stackrox/actions/release/wait-for-image@v1 + with: + token: ${{ secrets.QUAY_RHACS_ENG_BEARER_TOKEN }} + image: rhacs-eng/${{ matrix.image }}:${{ inputs.version }} + limit: 1800 + deploy: runs-on: ubuntu-latest + needs: [wait-for-images] steps: - name: Show inputs run: |