-
Notifications
You must be signed in to change notification settings - Fork 7
32 lines (28 loc) · 965 Bytes
/
Copy pathbuild-ee.yml
File metadata and controls
32 lines (28 loc) · 965 Bytes
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
name: EE build and push
on:
push:
branches:
- main
paths:
- 'execution-environment/**'
# 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: kenmoini/disconnected-openshift/.github/workflows/base-build-ee.yml@main
with:
REGISTRY_HOSTNAME: quay.io
REGISTRY_PATH: kenmoini
EE_IMAGE_NAME: 'openshift-agent-install-ee'
EE_IMAGE_TAG: 'latest'
EE_FOLDER_NAME: 'execution-environment'
EE_FILE_NAME: execution-environment.yml
secrets:
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_TOKEN }}
# REDHAT_USERNAME: ${{ secrets.REDHAT_USERNAME }}
# REDHAT_PASSWORD: ${{ secrets.REDHAT_PASSWORD }}