diff --git a/.github/workflows/logic-test-child.yaml b/.github/workflows/logic-test-child.yaml index 2437c91..a215cd7 100644 --- a/.github/workflows/logic-test-child.yaml +++ b/.github/workflows/logic-test-child.yaml @@ -23,23 +23,23 @@ on: default: true jobs: + plan: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: step complete + run: echo "CHILD ${{ inputs.environment }} ${{ inputs.component}} plan complete" + build-layers: runs-on: ubuntu-latest - + environment: ${{ inputs.environment }} if: ${{ inputs.deploy_layers == true }} # workflow_call doesnt handle bools properly, see docs steps: - name: layer run: echo "CHILD ${{ inputs.environment }} ${{ inputs.component}} Building layers complete - deploy_layers ${{ inputs.deploy_layers }}" - plan: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: step complete - run: echo "CHILD ${{ inputs.environment }} ${{ inputs.component}} plan complete" - apply: runs-on: ubuntu-latest environment: ${{ inputs.environment }}