-
Notifications
You must be signed in to change notification settings - Fork 17
71 lines (63 loc) · 2.04 KB
/
nightly.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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