btcpayserver/publish-docker.ps1
2018-03-26 11:54:10 +09:00

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