From e3c47b092d6cf2bb4f8799562b271ff7cbaad577 Mon Sep 17 00:00:00 2001 From: Mark Do Date: Wed, 7 Feb 2024 20:32:28 +0000 Subject: [PATCH] fixed typo --- .github/workflows/temp_ci_test.yml | 50 +++++++++++++++--------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/workflows/temp_ci_test.yml b/.github/workflows/temp_ci_test.yml index 4defbc9d..b1fb9e4c 100644 --- a/.github/workflows/temp_ci_test.yml +++ b/.github/workflows/temp_ci_test.yml @@ -95,32 +95,32 @@ jobs: run: | echo "CHANGED_MODULES: $CHANGED_MODULES" -setup-environment: - name: Setup environment - runs-on: ubuntu-latest - needs: get_modified_modules + setup-environment: + name: Setup environment + runs-on: ubuntu-latest + needs: get_modified_modules - outputs: - docker_matrix: ${{ steps.docker-environment.outputs.docker_matrix }} - registry: ${{ steps.docker-environment.outputs.registry }} - repository: ${{ steps.docker-environment.outputs.repository }} - source_branch: ${{ steps.github-environment.outputs.source_branch }} - target_branch: ${{ steps.github-environment.outputs.target_branch }} + outputs: + docker_matrix: ${{ steps.docker-environment.outputs.docker_matrix }} + registry: ${{ steps.docker-environment.outputs.registry }} + repository: ${{ steps.docker-environment.outputs.repository }} + source_branch: ${{ steps.github-environment.outputs.source_branch }} + target_branch: ${{ steps.github-environment.outputs.target_branch }} - steps: - - name: Checkout Repository - uses: actions/checkout@v3 + steps: + - name: Checkout Repository + uses: actions/checkout@v3 - - name: Setup Watod Environment - run: ./watod_scripts/watod-setup-env.sh - shell: bash + - name: Setup Watod Environment + run: ./watod_scripts/watod-setup-env.sh + shell: bash - - name: Generate Docker Environment - id: docker-environment - uses: "./.github/templates/docker_context" - with: - modified-modules: {{env.CHANGED_MODULES}} - - - name: Generate GitHub Environment - id: github-environment - uses: "./.github/templates/github_context" \ No newline at end of file + - name: Generate Docker Environment + id: docker-environment + uses: "./.github/templates/docker_context" + with: + modified-modules: {{env.CHANGED_MODULES}} + + - name: Generate GitHub Environment + id: github-environment + uses: "./.github/templates/github_context" \ No newline at end of file