Skip to content

.github/workflows/f5-ee-build.yml #14

.github/workflows/f5-ee-build.yml

.github/workflows/f5-ee-build.yml #14

Workflow file for this run

# Workflow name
name: f5 EE build
# Controls when the workflow will run
on:
# Triggers the workflow on push events but only for the main branch
push:
branches:
- main
paths:
- 'f5_ee/**'
# Schedule workflow run at 00:00 on Sunday
schedule:
- cron: '0 0 * * 0'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
call-deploy-workflow:
uses: cloin/ee-builds/.github/workflows/deploy.yml@main
with:
EE_FOLDER_NAME: 'f5_ee'
EE_IMAGE_TAG: 'latest'
QUAY_USER: 'acme_corp'
secrets:
REDHAT_USERNAME: ${{ secrets.REDHAT_USERNAME }}
REDHAT_PASSWORD: ${{ secrets.REDHAT_PASSWORD }}