Deploy to Bahmni Standard Docker Env #8
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: Deploy to Bahmni Standard Docker Env | |
on: | |
workflow_run: | |
types: [ completed ] | |
workflows: | |
- Build and Publish Odoo | |
- Build and Publish Odoo Fresh DB | |
- Build and Publish Odoo Demo DB | |
jobs: | |
trigger: | |
name: Trigger auto deploy | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
env: | |
ORG_NAME: Bahmni | |
REPOSITORY_NAME: bahmni-docker | |
EVENT_TYPE: odoo-publish-event | |
steps: | |
- name: Create repository_dispatch | |
run: | | |
trigger_result=$(curl -s -o trigger_response.txt -w "%{http_code}" -X POST -H "Accept: application/vnd.github.v3+json" -H 'authorization: Bearer ${{ secrets.BAHMNI_PAT }}' https://api.github.com/repos/${ORG_NAME}/${REPOSITORY_NAME}/dispatches -d '{"event_type":"'"${EVENT_TYPE}"'"}') | |
if [ $trigger_result == 204 ];then | |
echo "Trigger to $ORG_NAME/$REPOSITORY_NAME Success" | |
else | |
echo "Trigger to $ORG_NAME/$REPOSITORY_NAME Failed" | |
cat trigger_response.txt | |
exit 1 | |
fi |