workflow update to handle arm64 file formats

pull/70/head
Aparna Jyothi 1 year ago
parent 760646fc29
commit 5d39b45783

@ -93,9 +93,15 @@ jobs:
} elseif ('${{ inputs.tool-name }}' -eq 'go') {
$artifactName = "${{ env.ARTIFACT_NAME }}.zip"
} else {
if ('${{ inputs.tool-name }}' -eq 'node') {
$artifactName = "${{ env.ARTIFACT_NAME }}.zip"
}else
Write-Host "Unsupported tool - ${{ inputs.tool-name }}"
exit 1
}
}
7z.exe x "$artifactName" -y | Out-Null
} else {

Loading…
Cancel
Save