From fbf1b7c6b995c120b443306d2faad88e46050072 Mon Sep 17 00:00:00 2001 From: Franziska Wegner Date: Tue, 2 Jan 2024 08:19:53 -0800 Subject: [PATCH] Download artifacts from previous workflow --- .github/workflows/code-documentation.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/code-documentation.yml b/.github/workflows/code-documentation.yml index 10d87531..4c989883 100644 --- a/.github/workflows/code-documentation.yml +++ b/.github/workflows/code-documentation.yml @@ -57,6 +57,12 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Download Build Directory + uses: actions/download-artifact@main + with: + name: cmake-build-artifact-${{ matrix.os }}-${{ matrix.build_type }}-${{ matrix.cpp_compiler }} + path: ${{ steps.strings.outputs.build-output-dir }} + # Compared to Window and MacOS best option with stable ~2 min installation time. - name: Install LaTeX (Linux) if: startsWith(matrix.os,'ubuntu-')