Skip to content

Commit

Permalink
ci: fix upload artifact conflict
Browse files Browse the repository at this point in the history
Doesn't like it when two jobs from the same run upload the same name.

Signed-off-by: Ran Benita <[email protected]>
  • Loading branch information
bluetech committed Dec 15, 2024
1 parent c79c651 commit 0ebdc4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
fi
- name: Store doxygen docs for use by the pages workflow
uses: actions/upload-artifact@v4
if: success()
if: success() && matrix.compiler == 'gcc'
with:
name: doxygen-docs
path: |
Expand Down

0 comments on commit 0ebdc4d

Please sign in to comment.