Skip to content

Commit a636236

Browse files
DO-1298 get everything from the 4th word onwards for artifact
1 parent 295fb47 commit a636236

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-conquest-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
run: |
9393
output=$(${{ needs.setup.outputs.python }} build_conquest_python.py | grep Creating | tail -n 1)
9494
archive_filename=$(echo $output | awk '{print $2}')
95-
archive_path=$(echo $output | awk '{print $NF}')
95+
archive_path=$(echo $output | awk '{for(i=4;i<=NF;i++) printf "%s%s", $i, (i<NF ? " " : "")}')
9696
echo "archive_filename=$archive_filename" >> $GITHUB_ENV
9797
echo "archive_path=$archive_path" >> $GITHUB_ENV
9898

0 commit comments

Comments
 (0)