wishthis/create-release.ps1

13 lines
378 B
PowerShell
Raw Normal View History

2022-01-21 15:36:21 +00:00
Write-Host "second string"
$Version = Read-Host "What version would you like to release?"
$VersionRegEx = "define\('VERSION', '([\d\.]+)'\);"
$IndexPHP = (Get-Content -Path .\index.php -Raw) -Replace $VersionRegEx, "`define('VERSION', '$Version');" | Set-Content -Path .\index.php
IEX 'composer install --no-dev'
IEX 'npm install --only=production --no-optional'
Read-Host