CCText/scripts/Deploy.ps1
2024-04-12 13:07:50 +03:00

7 lines
195 B
PowerShell

Set-Location $PSScriptRoot\..
$token = Get-Content -Path .\secrets\API_TOKEN.txt
$python = 'python'
& ${python} -m pip install twine
& ${python} -m twine upload dist/* -u __token__ -p ${token}