mirror of
https://github.com/agersant/polaris
synced 2024-11-10 10:14:12 +00:00
8 lines
258 B
PowerShell
8 lines
258 B
PowerShell
Get-ChildItem "Cargo.toml" | ForEach-Object {
|
|
$conf = $_ | Get-Content -raw
|
|
$conf -match 'version\s+=\s+"(.*)"' | out-null
|
|
$script:POLARIS_VERSION = $matches[1]
|
|
}
|
|
|
|
git tag -a $POLARIS_VERSION -m "Polaris $POLARIS_VERSION"
|
|
git push origin $POLARIS_VERSION
|