Skip to content

Commit

Permalink
Merge pull request #67 from Bahmni/BAH-2889
Browse files Browse the repository at this point in the history
BAH-2889 | Trigger auto deployment to Bahmni Standard Environment
  • Loading branch information
umair-fayaz authored Mar 8, 2023
2 parents 79f1f56 + cfb2fc6 commit fd1454a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/trigger_std_env_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Deploy to Bahmni Standard Docker Env

on:
workflow_run:
types: [ completed ]
workflows:
- Build and Publish OpenELIS Demo DB
- Build and Publish OpenELIS Fresh DB
- Build and Publish OpenELIS

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: openelis-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

0 comments on commit fd1454a

Please sign in to comment.