44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
#
|
|
# Copyright (c) 2012-2021 Red Hat, Inc.
|
|
# This program and the accompanying materials are made
|
|
# available under the terms of the Eclipse Public License 2.0
|
|
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
#
|
|
# SPDX-License-Identifier: EPL-2.0
|
|
#
|
|
# Contributors:
|
|
# Red Hat, Inc. - initial API and implementation
|
|
#
|
|
name: Build and push catalog and bundle images.
|
|
on:
|
|
schedule:
|
|
- cron: '0 21 * * *'
|
|
branches:
|
|
- main
|
|
jobs:
|
|
|
|
build-and-push-images:
|
|
name: Build
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Install yq
|
|
run: sudo pip install yq
|
|
|
|
- name: Docker login
|
|
uses: azure/docker-login@v1
|
|
with:
|
|
login-server: quay.io
|
|
username: ${{ secrets.QUAY_USERNAME }}
|
|
password: ${{ secrets.QUAY_PASSWORD }}
|
|
|
|
- name: Build catalog source and opm bundle images and push to registry
|
|
run: >
|
|
${GITHUB_WORKSPACE}/olm/buildAndPushBundleImages.sh -c 'nightly' -p 'openshift' &&
|
|
${GITHUB_WORKSPACE}/olm/buildAndPushBundleImages.sh -c 'nightly' -p 'kubernetes'
|
|
env:
|
|
IMAGE_REGISTRY_HOST: quay.io
|
|
IMAGE_REGISTRY_USER_NAME: eclipse
|