Nightly Pipeline #893
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@v4 | |
with: | |
ref: ${{ github.event.inputs.release_branch || github.ref_name }} | |
# /opt/hostedtoolcache directory is large and has tools we do not need so delete it to free up space | |
- name: Print disk space before | |
run: df -h | |
- name: Free up space | |
run: rm -rf /opt/hostedtoolcache | |
- name: Print disk space after | |
run: df -h | |
- name: Build and push plugin image | |
run: | | |
docker login -u ${{ secrets.QUAY_USER }} -p ${{ secrets.QUAY_PASSWORD }} quay.io | |
make build-push-plugin-multi-arch |