Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Do committed Feb 7, 2024
1 parent c7a72db commit 0faed3c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_unitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
id: docker-environment
uses: "./.github/templates/docker_context"
with:
modified-modules: {{env.CHANGED_MODULES}}
modified-modules: ${{env.CHANGED_MODULES}}

- name: Generate GitHub Environment
id: github-environment
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/temp_ci_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
name: Get changed files

outputs: ${{ env.CHANGD_MODULES }}
outputs: ${{ steps.report_changes.outputs.modified_modules }}

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -95,6 +95,9 @@ jobs:
echo "CHANGED_MODULES=$CHANGED_MODULES world_modeling" >> $GITHUB_ENV
- name: List all changed files
id: report-changes
env:
modified_modules: ${{ env.CHANGED_MODULES }}
run: |
echo "CHANGED_MODULES: $CHANGED_MODULES"
Expand All @@ -104,7 +107,7 @@ jobs:
needs: get_changed_modules

env:
MODIFIED_MODULES: ${{ needs.get_changed_modules.outputs.CHANGED_MODULES }}
modified_modules: ${{ needs.get_changed_modules.outputs.modified_modules }}

outputs:
docker_matrix: ${{ steps.docker-environment.outputs.docker_matrix }}
Expand All @@ -125,7 +128,7 @@ jobs:
id: docker-environment
uses: "./.github/templates/docker_context"
with:
modified-modules: ${{env.MODIFIED_MODULES}}
modified-modules: ${{ env.modified_modules }}

- name: Generate GitHub Environment
id: github-environment
Expand Down

0 comments on commit 0faed3c

Please sign in to comment.