From d5ffd81aad2efc498b8da7ac0da33e1f8fad8627 Mon Sep 17 00:00:00 2001 From: fal7w <147312030+fal7w@users.noreply.github.com> Date: Sat, 2 Dec 2023 08:32:02 +0300 Subject: [PATCH] Update Master_Workflow.yml --- .github/workflows/Master_Workflow.yml | 38 ++++++++++++++++++--------- 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/.github/workflows/Master_Workflow.yml b/.github/workflows/Master_Workflow.yml index 1fe16d17..8dc465be 100644 --- a/.github/workflows/Master_Workflow.yml +++ b/.github/workflows/Master_Workflow.yml @@ -29,18 +29,32 @@ jobs: # uses: actions/setup site base on provided image build for branch specified-dispatch@v2 # with: # workflow: 'setup site base on provided image build for branch specified' + # steps: + # - name: Checkout code + # uses: actions/checkout@v2 + + # - name: Checkout code + # uses: actions/checkout@v2 + + # - name: Run Deploy Traefik and MariaDB + # uses: ./.github/workflows/Deploy_Traefik_and_MariaDB.yml + + # # - name: Run build system Image base on json config provided + # # uses: ./.github/workflows/build_system_image.yml + + # - name: Run setup site base on provided image build for branch specified + # uses: ./.github/workflows/setup_site.yml + steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Checkout code - uses: actions/checkout@v2 - - - name: Run Deploy Traefik and MariaDB - uses: ./.github/workflows/Deploy_Traefik_and_MariaDB.yml + - name: Trigger Deploy Traefik and MariaDB + uses: actions/workflow-dispatch@v2 + with: + workflow: Deploy_Traefik_and_MariaDB.yml + + - name: Trigger setup site base on provided image build for branch specified + uses: actions/workflow-dispatch@v2 + with: + workflow: setup_site.yml - # - name: Run build system Image base on json config provided - # uses: ./.github/workflows/build_system_image.yml - - name: Run setup site base on provided image build for branch specified - uses: ./.github/workflows/setup_site.yml +