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 fa3feee commit dbddff1Copy full SHA for dbddff1
1 file changed
.github/workflows/release.yml
@@ -125,7 +125,8 @@ jobs:
125
plat="$(basename "$whl" .whl | sed 's/.*-py3-none-//')"
126
tmp="$(mktemp -d)"
127
python -m zipfile -e "$whl" "$tmp"
128
- bin="$(find "$tmp/codeanalyzer_typescript/_bin" -type f ! -name '.gitignore')"
+ # _bin/ now also holds schema.json, so select the binary by name (cants / cants.exe).
129
+ bin="$(find "$tmp/codeanalyzer_typescript/_bin" -type f -name 'cants*')"
130
ext=""; [[ "$bin" == *.exe ]] && ext=".exe"
131
cp "$bin" "../../release-bins/cants-${plat}${ext}"
132
done
0 commit comments