From 4de568ff9218b2dc4659db5142954abcd55d1830 Mon Sep 17 00:00:00 2001 From: mprinkezs <131883374+mprinkezs@users.noreply.github.com> Date: Mon, 9 Sep 2024 14:24:06 +0200 Subject: [PATCH] Update releasenotes_pdf.yml --- .github/workflows/releasenotes_pdf.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/releasenotes_pdf.yml b/.github/workflows/releasenotes_pdf.yml index e84e857..54774de 100644 --- a/.github/workflows/releasenotes_pdf.yml +++ b/.github/workflows/releasenotes_pdf.yml @@ -24,8 +24,10 @@ jobs: - name: Find and Convert Release Notes id: convert_notes run: | + pwd find . -type f -name 'Releasenotes.md' -exec sh -c ' basepath=$(dirname "{}") # Get the folder path + echo $basepath if [ ! -f "$basepath/Releasenotes.pdf" ]; then pandoc "{}" -o "$basepath/Releasenotes.pdf" fi