mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
7 lines
228 B
PowerShell
7 lines
228 B
PowerShell
$ver = [regex]::Match((Get-Content BTCPayServer\BTCPayServer.csproj), '<Version>([^<]+)<').Groups[1].Value
|
|
git tag -a "v$ver" -m "$ver"
|
|
git push --tags
|
|
git tag -d "stable"
|
|
git tag -a "stable" -m "stable"
|
|
git push --tags --force
|