From 562c221461d81bbcaecfbe91c32434ea4d9c4f9e Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Fri, 23 May 2025 16:58:48 +0800 Subject: [PATCH] update GitHub actions to remove upload logs step (unavailable on macos?) --- .github/workflows/dart.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml index 46b07a25..ce9f6096 100644 --- a/.github/workflows/dart.yml +++ b/.github/workflows/dart.yml @@ -26,15 +26,15 @@ jobs: run: dart --enable-experiment=native-assets test -j1 test/light_tests.dart # Upload logs on failure - - name: Upload logs - if: failure() || steps.build.outcome == 'failure' - uses: actions/upload-artifact@v4 - with: - name: build-logs - path: | - /Users/runner/work/thermion/thermion/thermion_dart//.dart_tool/thermion_dart/log/build.log - #D:\a\thermion\thermion\thermion_dart\.dart_tool\thermion_dart\log\build.log - retention-days: 5 + #- name: Upload logs + # if: failure() || steps.build.outcome == 'failure' + # uses: actions/upload-artifact@v4 + # with: + # name: build-logs + # path: | + # /Users/runner/work/thermion/thermion/thermion_dart//.dart_tool/thermion_dart/log/build.log + # #D:\a\thermion\thermion\thermion_dart\.dart_tool\thermion_dart\log\build.log + # retention-days: 5 # Capture crash dumps if they exist - name: Collect crash dumps