Skip to content

Commit e77582b

Browse files
authored
Merge pull request #212 from thewtex/artifact-name
ENH: Improve Actions PDF artifact name
2 parents 4f154fb + dd86548 commit e77582b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,17 @@ jobs:
5555
cd build
5656
cmake -GNinja -DCMAKE_BUILD_TYPE=MinSizeRel -DSuperBuild_ITKSoftwareGuide_USE_GIT_PROTOCOL:BOOL=OFF ..
5757
ninja
58+
cp ./ITKSoftwareGuide-build/SoftwareGuide/Latex/ITKSoftwareGuide-Book1.pdf ../InsightSoftwareGuide-Book1.pdf
59+
cp ./ITKSoftwareGuide-build/SoftwareGuide/Latex/ITKSoftwareGuide-Book2.pdf ../InsightSoftwareGuide-Book2.pdf
5860
5961
- name: Publish ITK Software Guide Book 1 artifact
6062
uses: actions/upload-artifact@v4
6163
with:
62-
name: ITKSoftwareGuide-Book1.pdf
63-
path: build/ITKSoftwareGuide-build/SoftwareGuide/Latex/ITKSoftwareGuide-Book1.pdf
64+
path: InsightSoftwareGuide-Book1.pdf
65+
name: InsightSoftwareGuide-Book1.pdf
6466

6567
- name: Publish ITK Software Guide Book 2 artifact
6668
uses: actions/upload-artifact@v4
6769
with:
68-
name: ITKSoftwareGuide-Book2.pdf
69-
path: build/ITKSoftwareGuide-build/SoftwareGuide/Latex/ITKSoftwareGuide-Book2.pdf
70+
path: InsightSoftwareGuide-Book2.pdf
71+
name: InsightSoftwareGuide-Book2.pdf

0 commit comments

Comments
 (0)