-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (37 loc) · 1.17 KB
/
build-deploy-ee.yml
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
name: EE build and deploy
on:
pull_request:
paths:
- 'collections/**'
- requirements.txt
- bindep.txt
- execution-environment.yml
push:
branches:
- main
paths:
- 'collections/**'
- requirements.txt
- bindep.txt
- execution-environment.yml
# 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: tosin2013/qubinode_navigator/.github/workflows/base-build-deploy-ee.yml@main
with:
EE_FOLDER_NAME: 'ansible-builder'
EE_IMAGE_NAME: 'qubinode-installer'
EE_IMAGE_TAG: 'latest'
secrets:
REGISTRY_HOSTNAME: ${{ secrets.REGISTRY_HOSTNAME }}
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
REGISTRY_PATH: ${{ secrets.REGISTRY_PATH }}
# REDHAT_USERNAME: ${{ secrets.REDHAT_USERNAME }}
# REDHAT_PASSWORD: ${{ secrets.REDHAT_PASSWORD }}
# AH_TOKEN: ${{ secrets.AH_TOKEN }}