Skip to content

Commit

Permalink
Download Artifacts in Code Documentation Workflow (#76)
Browse files Browse the repository at this point in the history
This PR add the code to download the artifacts from a previous workflow.
  • Loading branch information
franziska-wegner committed Jan 2, 2024
1 parent 988e0ac commit cb587f8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/code-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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-')
Expand Down

0 comments on commit cb587f8

Please sign in to comment.