chore(release): include PowerShell install script in build
All checks were successful
CI / Test (push) Successful in 34s
CI / Lint (push) Successful in 24s
CI / Build (push) Successful in 19s

Add copying of grokkit-install.ps1 to the build directory during release workflow, alongside the existing sh script.
This commit is contained in:
Gregory Gauthier 2026-03-30 11:58:55 +01:00
parent 250aff99ed
commit c4bc073b35

View File

@ -45,6 +45,7 @@ jobs:
done
sha256sum build/grokkit-*.tar.gz | tee build/checksums.txt
cp scripts/grokkit-install.sh build/
cp scripts/grokkit-install.ps1 build/
# Clean up raw binaries (keep only tars, checksums, sh)
for plat in 'linux/amd64' 'linux/arm64' 'darwin/amd64' 'darwin/arm64' 'windows/amd64'; do
IFS='/' read -r OS ARCH <<< "$plat"