From f3269b6faa4c74a8e4124b32f086beaeffeb4081 Mon Sep 17 00:00:00 2001 From: Nick Art <100365428+NicK4rT@users.noreply.github.com> Date: Tue, 26 Nov 2024 15:30:37 -0500 Subject: [PATCH] Update release-pipeline.yml --- .github/workflows/release-pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-pipeline.yml b/.github/workflows/release-pipeline.yml index 26a22e6..88330b0 100644 --- a/.github/workflows/release-pipeline.yml +++ b/.github/workflows/release-pipeline.yml @@ -21,7 +21,7 @@ jobs: # Extract the table section and parse the file paths raw_file_list=$(awk '/\| name/ {f=1; next} /\|----/ {next} f && /\|/ {print $2}' README.qmd | tr -d ' ') - + # Add the software/ prefix to each file path file_list=$(echo "$raw_file_list" | sed 's/^/software\//') @@ -58,7 +58,7 @@ jobs: fi - name: Copy Updated Files to Release Folder - if: env.updated_files != "" + if: ${{ env.updated_files != '' }} run: | mkdir -p release # Ensure the release folder exists while read file; do @@ -66,7 +66,7 @@ jobs: done < updated_files.txt - name: List Files in Release Folder - if: env.updated_files != "" + if: ${{ env.updated_files != '' }} run: | echo "Files copied to the release folder:" find release -type f