Skip to content

Commit

Permalink
fix variables
Browse files Browse the repository at this point in the history
  • Loading branch information
niazhussain committed Jan 28, 2024
1 parent e03ef54 commit cc94d15
Showing 1 changed file with 22 additions and 6 deletions.
28 changes: 22 additions & 6 deletions .github/workflows/MannualPublish_and_Deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,26 +11,42 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Trigger Build Docker Image workflow
uses: actions/workflow-dispatch@v2
uses: convictional/trigger-workflow-[email protected]
with:
workflow: publishOnDHR.yml
owner: $GITHUB_REPOSITORY_OWNER
repo: ${{ github.event.repository.name }}
workflow_file_name: publishOnDHR.yml
ref: dev
trigger_workflow: true
wait_workflow: true
trigger-deploy:
name: Deploy
runs-on: ubuntu-20.04
needs: trigger-build_and_publish
steps:
- name: Trigger Deployment workflow
uses: actions/workflow-dispatch@v2
uses: convictional/trigger-workflow-[email protected]
with:
workflow: trigger-deployment.yml
owner: $GITHUB_REPOSITORY_OWNER
repo: ${{ github.event.repository.name }}
workflow_file_name: trigger-deployment.yml
ref: dev
trigger_workflow: true
wait_workflow: true
trigger-autotest:
name: Autotest
runs-on: ubuntu-20.04
needs: trigger-deploy
steps:
- name: Trigger Autotest workflow
uses: actions/workflow-dispatch@v2
uses: convictional/trigger-workflow-[email protected]
with:
workflow: trigger-autotest.yml
owner: $GITHUB_REPOSITORY_OWNER
repo: ${{ github.event.repository.name }}
workflow_file_name: trigger-autotest.yml
ref: dev
trigger_workflow: true
wait_workflow: true



0 comments on commit cc94d15

Please sign in to comment.