Skip to content

Commit

Permalink
fix: modify step that generate the matrix.app from main to capture ge…
Browse files Browse the repository at this point in the history
…nerate.sh exit code and call the ./stop.sh script
  • Loading branch information
renanfranca committed Nov 12, 2024
1 parent 5cbf4d5 commit afe730f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,10 +293,10 @@ jobs:
id: generate-main
run: |
./start.sh 7471
./generate.sh ${{ matrix.app }} ${{ matrix.java-build-tool }} ${{ matrix.spring-config-format }}
GENERATE_EXIT_CODE=$?
(./generate.sh ${{ matrix.app }} ${{ matrix.java-build-tool }} ${{ matrix.spring-config-format }}; GENERATE_EXIT_CODE=$?)
./stop.sh
echo "exit_code=$GENERATE_EXIT_CODE" >> $GITHUB_OUTPUT
exit $GENERATE_EXIT_CODE
- name: 'Generation: calculate md5sum ${{ matrix.app }} from main branch'
if: github.event_name == 'pull_request'
id: calculate-md5sum-main
Expand Down

0 comments on commit afe730f

Please sign in to comment.