stremio-shell-ng/upload.ps1
Vladimir Borisov 6acbee54e5
Some checks failed
Continuous integration / test (push) Has been cancelled
Fix upload script
2026-06-23 11:18:37 +03:00

8 lines
322 B
PowerShell

$tag = $(git describe --tags --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