From a06335ebba50a6bc9204233a22d6810843090637 Mon Sep 17 00:00:00 2001 From: Sergio Martin Date: Sat, 20 Jan 2024 10:23:50 +0100 Subject: [PATCH] Adding correct artifact upload syntax --- .github/workflows/make.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 11c22d9..eeb53a9 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -24,4 +24,8 @@ jobs: - name: Building project run: ninja -C build - name: Running tests - run: ninja test -C build \ No newline at end of file + run: ninja test -C build + - uses: actions/upload-artifact@v4 + with: + name: meson-logs + path: build/meson-logs/ \ No newline at end of file