Nightly Pipeline #5
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: Nightly Pipeline | |
on: | |
schedule: | |
# Every night at 04:00 (UTC) | |
- cron: '0 4 * * *' | |
workflow_dispatch: | |
inputs: | |
release_branch: | |
description: Branch to release | |
required: true | |
default: main | |
type: string | |
plugin_quay_repository: | |
description: Plugin Quay repository | |
type: string | |
default: quay.io/kiali/ossmconsole | |
required: true | |
jobs: | |
initialize: | |
name: Initialize | |
runs-on: ubuntu-20.04 | |
outputs: | |
plugin_quay_tag: ${{ env.plugin_quay_tag }} | |
operator_quay_tag: ${{ env.operator_quay_tag }} | |
steps: | |
- name: Determine Quay tag | |
id: quay_tag | |
run: | | |
if [ -z "${{ github.event.inputs.plugin_quay_repository }}" ]; | |
then | |
PLUGIN_QUAY_REPO="quay.io/kiali/ossmconsole" | |
else | |
PLUGIN_QUAY_REPO="${{ github.event.inputs.plugin_quay_repository }}" | |
fi | |
PLUGIN_QUAY_TAG="$PLUGIN_QUAY_REPO:latest" | |
echo "plugin_quay_tag=$PLUGIN_QUAY_TAG" >> $GITHUB_ENV | |
- name: Log information | |
run: | | |
echo "Release type: latest" | |
echo "Plugin Quay tag": ${{ env.plugin_quay_tag }} | |
push: | |
name: Push latest | |
runs-on: ubuntu-20.04 | |
if: ${{ (github.event_name == 'schedule' && github.repository == 'kiali/openshift-servicemesh-plugin') || github.event_name != 'schedule' }} | |
needs: [initialize] | |
env: | |
PLUGIN_QUAY_TAG: ${{ needs.initialize.outputs.plugin_quay_tag }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.inputs.release_branch || github.ref_name }} | |
- name: Build and push plugin image | |
run: | | |
docker login -u ${{ secrets.QUAY_USER }} -p ${{ secrets.QUAY_PASSWORD }} quay.io | |
make -e TARGET_ARCHS="amd64 s390x ppc64le" build-push-plugin-multi-arch |