dispatch-build-bottle: update workflow summary steps

Follow up to #108365.
master
Carlo Cabrera 2022-08-19 00:51:28 +08:00
parent e62d86ecae
commit 9ec55c2a3b
1 changed files with 20 additions and 2 deletions

View File

@ -132,12 +132,30 @@ jobs:
if: always() && runner.os == 'Linux'
run: docker cp ${{github.sha}}:/tmp/bottles .
- name: Failures Summary and Bottle Result
- name: Failures summary for brew test-bot --only-formulae
if: always()
uses: Homebrew/actions/failures-summary-and-bottle-result@master
with:
workdir: ${{matrix.workdir || github.workspace}}
result_path: bottles/steps_output.txt
step_name: 'Build summary on ${{ matrix.runner }}'
- name: Output brew linkage result
if: always()
uses: Homebrew/actions/failures-summary-and-bottle-result@master
with:
workdir: ${{matrix.workdir || github.workspace}}
result_path: bottles/linkage_output.txt
step_name: '`brew linkage` output on ${{ matrix.runner }}'
- name: Output brew bottle result
if: always()
uses: Homebrew/actions/failures-summary-and-bottle-result@master
with:
workdir: ${{matrix.workdir || github.workspace}}
result_path: bottles/bottle_output.txt
step_name: '`brew bottle` output on ${{ matrix.runner }}'
- name: Upload logs
if: always()
uses: actions/upload-artifact@main