stremio-shell-ng/upload.ps1
Vladimir Borisov 7461b2efcd
Better uploader
2026-02-05 13:48:58 +02:00

8 lines
315 B
PowerShell

$tag = $(git describe --abbrev=0)
foreach ($installer in (get-item .\StremioSetup*.exe)) {
if ($tag.StartsWith("v$($installer.VersionInfo.ProductVersion.Trim())")) {
aws s3 cp --acl public-read "$installer" s3://stremio-artifacts/stremio-shell-ng/$tag/
}
}
node ./generate_descriptor.js --tag=$tag