mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
9 lines
269 B
PowerShell
9 lines
269 B
PowerShell
$ver = [regex]::Match((Get-Content BTCPayServer\BTCPayServer.csproj), '<Version>([^<]+)<').Groups[1].Value
|
|
git tag -a "v$ver" -m "$ver"
|
|
git checkout latest
|
|
git merge master
|
|
git checkout master
|
|
git tag -d "stable"
|
|
git tag -a "stable" -m "stable"
|
|
git push --tags --force
|