Ansible EE build #124
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
--- | |
name: Ansible EE build | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 'ansible-ee/**' | |
schedule: | |
- cron: '0 0 * * 0' | |
# Allow manual run from the Actions tab | |
workflow_dispatch: | |
jobs: | |
call-deploy-workflow: | |
uses: branic/ansible-ee-builds/.github/workflows/deploy-ee.yml@main | |
with: | |
EE_FOLDER_NAME: 'ansible-ee' | |
EE_IMAGE_TAG: 'latest' | |
secrets: | |
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME}} | |
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }} | |
REDHAT_USERNAME: ${{ secrets.REDHAT_USERNAME }} | |
REDHAT_PASSWORD: ${{ secrets.REDHAT_PASSWORD }} | |
AH_TOKEN: ${{ secrets.AH_TOKEN }} |