We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc965ac commit c480d3fCopy full SHA for c480d3f
1 file changed
.github/workflows/linux-build.yml
@@ -69,11 +69,11 @@ jobs:
69
- name: Determine Artifact Name
70
id: artifact
71
run: |
72
- if [[ "${{ inputs.platform }}" == "linux" && "${{ inputs.arch }}" == "x64" ]]; then
73
- echo "zip_name=highs-v1.12.0-linux-x64.zip" >> $GITHUB_OUTPUT
+ if [ "${{ inputs.platform }}" = "linux" ] && [ "${{ inputs.arch }}" = "x64" ]; then
+ echo "zip_name=highs-v1.12.0-linux-x64.zip" >> "$GITHUB_OUTPUT"
74
else
75
- echo "Error: Unsupported Platform/Arch combination: ${{ inputs.platform }} ${{ inputs.arch }}"
76
- exit 1
+ echo "Error: Unsupported Platform/Arch combination: ${{ inputs.platform }} ${{ inputs.arch }}"
+ exit 1
77
fi
78
79
- name: Download HiGHS Artifact
0 commit comments