Skip to content

Commit

Permalink
.github/workflows/doc-build-pdf.yml: Fix get_ci_fixes when there are …
Browse files Browse the repository at this point in the history
…no fixes
  • Loading branch information
mkoeppe committed Sep 27, 2023
1 parent c4f4310 commit 7565e0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/doc-build-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
- name: Store CI fixes in upstream artifact
run: |
mkdir -p upstream
git format-patch --stdout test_base > upstream/ci_fixes.patch
if git format-patch --stdout test_base > ci_fixes.patch; then
cp ci_fixes.patch upstream/
fi
- uses: actions/upload-artifact@v3
with:
path: upstream
Expand Down

0 comments on commit 7565e0c

Please sign in to comment.