Delete create-release.ps1

This commit is contained in:
Jay Trees 2022-04-11 10:06:01 +02:00
parent a2cb2d9714
commit 8dacc7e961

View file

@ -1,12 +0,0 @@
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 update --no-dev --with-all-dependencies --ignore-platform-req=php'
IEX 'npm update --only=production --no-optional'
Read-Host