From 1f7e4183f01bd5c01c2efbd7806b072a285d479f Mon Sep 17 00:00:00 2001 From: aidenvaines-bjss Date: Tue, 5 Mar 2024 09:11:32 +0000 Subject: [PATCH] fixing workflow --- .github/workflows/logic-test-child.yaml | 13 +++++++++++-- .github/workflows/logic-test.yaml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/logic-test-child.yaml b/.github/workflows/logic-test-child.yaml index c04c1ba..2437c91 100644 --- a/.github/workflows/logic-test-child.yaml +++ b/.github/workflows/logic-test-child.yaml @@ -31,14 +31,23 @@ jobs: - name: layer run: echo "CHILD ${{ inputs.environment }} ${{ inputs.component}} Building layers complete - deploy_layers ${{ inputs.deploy_layers }}" - do-the-do: + plan: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: step complete - run: echo "CHILD ${{ inputs.environment }} ${{ inputs.component}} step complete" + run: echo "CHILD ${{ inputs.environment }} ${{ inputs.component}} plan complete" + + apply: + runs-on: ubuntu-latest + environment: ${{ inputs.environment }} + steps: + - uses: actions/checkout@v4 + + - name: step complete + run: echo "CHILD ${{ inputs.environment }} ${{ inputs.component}} apply complete" tests: runs-on: ubuntu-latest diff --git a/.github/workflows/logic-test.yaml b/.github/workflows/logic-test.yaml index cc1b922..435ccbb 100644 --- a/.github/workflows/logic-test.yaml +++ b/.github/workflows/logic-test.yaml @@ -34,7 +34,7 @@ jobs: strategy: max-parallel: 1 matrix: - component: [mgmt, mesh, events] + component: ['mgmt', 'mesh', 'events'] uses: ./.github/workflows/logic-test-child.yaml with: