-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove old certificate and replace the automatic build script with ma…
…nual scripts
- Loading branch information
Showing
4 changed files
with
24 additions
and
44 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
param ( | ||
[String]$pw = $( Read-Host "Password" ) | ||
) | ||
|
||
$thread = Start-ThreadJob -InputObject ($pw) -ScriptBlock { | ||
$wshell = New-Object -ComObject wscript.shell; | ||
$pw = "$($input)~" | ||
while ($true) { | ||
while ( -not $wshell.AppActivate("Windows Security")) { | ||
Start-Sleep 1 | ||
} | ||
Start-Sleep 1 | ||
$wshell.SendKeys($pw, $true) | ||
Start-Sleep 1 | ||
} | ||
} | ||
|
||
cargo build --release --target i686-pc-windows-msvc | ||
& "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" /DSIGN "/Sstremiosign=`$qC:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x86\signtool.exe`$q sign /t http://timestamp.digicert.com /n `$qSmart Code OOD`$q `$f" "setup\Stremio.iss" | ||
|
||
Stop-Job -Job $thread |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
$tag = $(git describe --abbrev=0) | ||
aws s3 cp --acl public-read ".\StremioSetup-v$((get-item .\StremioSetup*.exe).VersionInfo.ProductVersion.Trim()).exe" s3://stremio-artifacts/stremio-shell-ng/$tag/ | ||
node ./generate_descriptor.js --tag=$tag |