[v4.13] Add hco-bundle-registry:v4.13.12.rhel9-122 #32504
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sanity Checks | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '.tekton/**' | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- '.tekton/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Compare with production | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 3 | |
- name: Prepare auth file | |
run: echo ${AUTH_FILE_CONTENT} | base64 -d > ${REGISTRY_AUTH_FILE} | |
env: | |
AUTH_FILE_CONTENT: ${{ secrets.RREGISTRY_AUTH }} | |
REGISTRY_AUTH_FILE: ./auth.json | |
- name: Get opm clients | |
run: | | |
source opm_utils.sh | |
download_opm_client | |
mkdir -p .docker | |
cp auth.json .docker/config.json | |
- name: Compare with production | |
run: | | |
export PATH=$(pwd):${PATH} | |
make check-prod | |
env: | |
REGISTRY_AUTH_FILE: ./auth.json | |
SKOPEO_CMD: podman run --rm -v .:/auth quay.io/skopeo/stable:latest | |
AUTH_FILE: --authfile=/auth/auth.json | |
DOCKER_CONFIG: .docker/ |