Security EE build #100
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
# Workflow Name | |
name: Security EE build | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push events but only for the master branch | |
push: | |
branches: | |
- master | |
paths: | |
- 'ee-security-image/**' | |
# Schedule workflow run at 02:00 on Sunday | |
schedule: | |
- cron: '0 2 * * 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: nleiva/ee-builds/.github/workflows/deploy.yml@master | |
with: | |
EE_FOLDER_NAME: 'ee-security-image' | |
EE_IMAGE_TAG: 'latest' | |
QUAY_USER: 'nleiva2' | |
secrets: | |
REDHAT_USERNAME: ${{ secrets.REDHAT_USERNAME }} | |
REDHAT_PASSWORD: ${{ secrets.REDHAT_PASSWORD }} | |
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }} | |
AH_TOKEN: ${{ secrets.AH_TOKEN }} |