From 1b7a161c9867f0824568391d8a862db8f5baaf8a Mon Sep 17 00:00:00 2001 From: Jonathan Moallem Date: Tue, 24 Nov 2020 15:50:17 +1100 Subject: [PATCH] Made macOS and Ubuntu workflows upload logs as artifacts --- .github/workflows/macOS.yml | 5 +++++ .github/workflows/ubuntu.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index 949d9d1..0ee8525 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -16,3 +16,8 @@ jobs: run: make setup - name: make test run: make test + - name: save logs as artifact + uses: actions/upload-artifact@v2 + with: + name: logs + path: .temp/execute.log diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index a3d62e4..1ce122e 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -20,3 +20,8 @@ jobs: run: make setup - name: make test run: make test + - name: save logs as artifact + uses: actions/upload-artifact@v2 + with: + name: logs + path: .temp/execute.log