Skip to content

Commit

Permalink
Merge pull request #212 from thewtex/artifact-name
Browse files Browse the repository at this point in the history
ENH: Improve Actions PDF artifact name
  • Loading branch information
thewtex authored Apr 23, 2024
2 parents 4f154fb + dd86548 commit e77582b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,17 @@ jobs:
cd build
cmake -GNinja -DCMAKE_BUILD_TYPE=MinSizeRel -DSuperBuild_ITKSoftwareGuide_USE_GIT_PROTOCOL:BOOL=OFF ..
ninja
cp ./ITKSoftwareGuide-build/SoftwareGuide/Latex/ITKSoftwareGuide-Book1.pdf ../InsightSoftwareGuide-Book1.pdf
cp ./ITKSoftwareGuide-build/SoftwareGuide/Latex/ITKSoftwareGuide-Book2.pdf ../InsightSoftwareGuide-Book2.pdf
- name: Publish ITK Software Guide Book 1 artifact
uses: actions/upload-artifact@v4
with:
name: ITKSoftwareGuide-Book1.pdf
path: build/ITKSoftwareGuide-build/SoftwareGuide/Latex/ITKSoftwareGuide-Book1.pdf
path: InsightSoftwareGuide-Book1.pdf
name: InsightSoftwareGuide-Book1.pdf

- name: Publish ITK Software Guide Book 2 artifact
uses: actions/upload-artifact@v4
with:
name: ITKSoftwareGuide-Book2.pdf
path: build/ITKSoftwareGuide-build/SoftwareGuide/Latex/ITKSoftwareGuide-Book2.pdf
path: InsightSoftwareGuide-Book2.pdf
name: InsightSoftwareGuide-Book2.pdf

0 comments on commit e77582b

Please sign in to comment.