change workflow type #14
Workflow file for this run
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: Trigger Manually Build and Deploy | |
on: | |
push: | |
branches: | |
- ci/1206449610772777_auto-deployment-fix | |
jobs: | |
trigger-build_and_publish: | |
name: Build and Publish Docker image | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Trigger Build Docker Image workflow | |
uses: convictional/[email protected] | |
with: | |
owner: ${{ github.repository_owner }} | |
repo: ${{ github.event.repository.name }} | |
github_token: ${{ secrets.GHACTION }} | |
workflow_file_name: publishondhr.yml | |
ref: ${{ github.ref_name }} | |
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: convictional/[email protected] | |
with: | |
owner: ${{ github.repository_owner }} | |
repo: ${{ github.event.repository.name }} | |
github_token: ${{ secrets.GHACTION }} | |
workflow_file_name: trigger-deployment.yml | |
ref: ${{ github.ref_name }} | |
trigger_workflow: true | |
wait_workflow: true | |
trigger-autotest: | |
name: Autotest | |
runs-on: ubuntu-20.04 | |
needs: trigger-deploy | |
steps: | |
- name: Trigger Autotest workflow | |
uses: convictional/[email protected] | |
with: | |
owner: ${{ github.repository_owner }} | |
repo: ${{ github.event.repository.name }} | |
github_token: ${{ secrets.GHACTION }} | |
workflow_file_name: trigger-autotest.yml | |
ref: dev | |
trigger_workflow: true | |
wait_workflow: true | |