We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 295fb47 commit a636236Copy full SHA for a636236
.github/workflows/build-conquest-python.yml
@@ -92,7 +92,7 @@ jobs:
92
run: |
93
output=$(${{ needs.setup.outputs.python }} build_conquest_python.py | grep Creating | tail -n 1)
94
archive_filename=$(echo $output | awk '{print $2}')
95
- archive_path=$(echo $output | awk '{print $NF}')
+ archive_path=$(echo $output | awk '{for(i=4;i<=NF;i++) printf "%s%s", $i, (i<NF ? " " : "")}')
96
echo "archive_filename=$archive_filename" >> $GITHUB_ENV
97
echo "archive_path=$archive_path" >> $GITHUB_ENV
98
0 commit comments