mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
Move CLI to apps/cli
This commit is contained in:
23
apps/cli/scripts/brew-update.ps1
Normal file
23
apps/cli/scripts/brew-update.ps1
Normal file
@@ -0,0 +1,23 @@
|
||||
param (
|
||||
[Parameter(Mandatory=$true)]
|
||||
[string] $version
|
||||
)
|
||||
|
||||
# Dependencies:
|
||||
# 1. brew cask install powershell
|
||||
# 2. Environment variables for HOMEBREW_GITHUB_USER and HOMEBREW_GITHUB_API_TOKEN set.
|
||||
#
|
||||
# To run:
|
||||
# pwsh ./brew-update.ps1 -version 1.1.0
|
||||
|
||||
# Cleaning up
|
||||
cd $("$(brew --repository)" + "/Library/Taps/homebrew/homebrew-core/Formula")
|
||||
git checkout master
|
||||
git reset --hard origin/master
|
||||
git push $env:HOMEBREW_GITHUB_USER master
|
||||
git branch -D $("bitwarden-cli-" + $version)
|
||||
git push $env:HOMEBREW_GITHUB_USER --delete $("bitwarden-cli-" + $version)
|
||||
|
||||
# Bump
|
||||
$url = 'https://registry.npmjs.org/@bitwarden/cli/-/cli-' + $version + '.tgz';
|
||||
brew bump-formula-pr --url="$url" bitwarden-cli
|
||||
34
apps/cli/scripts/choco-pack.ps1
Normal file
34
apps/cli/scripts/choco-pack.ps1
Normal file
@@ -0,0 +1,34 @@
|
||||
param (
|
||||
[switch] $push
|
||||
)
|
||||
|
||||
# To run:
|
||||
# .\choco-pack.ps1
|
||||
|
||||
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path;
|
||||
$rootDir = $dir + "\..";
|
||||
$distDir = $rootDir + "\dist";
|
||||
$chocoDir = $rootDir + "\stores\chocolatey";
|
||||
$distChocoDir = $distDir + "\chocolatey";
|
||||
$distChocoToolsDir = $distDir + "\chocolatey\tools";
|
||||
|
||||
if(Test-Path -Path $distChocoDir) {
|
||||
Remove-Item -Recurse -Force $distChocoDir
|
||||
}
|
||||
|
||||
$exe = $distDir + "\windows\bw.exe";
|
||||
$license = $rootDir + "\LICENSE.txt";
|
||||
Copy-Item -Path $chocoDir -Destination $distChocoDir –Recurse
|
||||
Copy-Item $exe -Destination $distChocoToolsDir;
|
||||
Copy-Item $license -Destination $distChocoToolsDir;
|
||||
|
||||
$srcPackage = $rootDir + "\package.json";
|
||||
$srcPackageVersion = (Get-Content -Raw -Path $srcPackage | ConvertFrom-Json).version;
|
||||
$nuspec = $distChocoDir + "\bitwarden-cli.nuspec";
|
||||
choco pack $nuspec --version $srcPackageVersion --out $distChocoDir
|
||||
|
||||
if ($push) {
|
||||
cd $distChocoDir
|
||||
choco push
|
||||
cd $rootDir
|
||||
}
|
||||
26
apps/cli/scripts/choco-update.ps1
Normal file
26
apps/cli/scripts/choco-update.ps1
Normal file
@@ -0,0 +1,26 @@
|
||||
param (
|
||||
[Parameter(Mandatory=$true)]
|
||||
[string] $version
|
||||
)
|
||||
|
||||
# To run:
|
||||
# .\choco-update.ps1 -version 1.3.0
|
||||
|
||||
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path;
|
||||
$rootDir = $dir + "\..";
|
||||
$distDir = $rootDir + "\dist";
|
||||
$distChocoDir = $distDir + "\chocolatey";
|
||||
|
||||
if(Test-Path -Path $distChocoDir) {
|
||||
Remove-Item -Recurse -Force $distChocoDir
|
||||
}
|
||||
New-Item -ItemType directory -Path $distChocoDir | Out-Null
|
||||
|
||||
$nupkg = "bitwarden-cli." + $version + ".nupkg"
|
||||
$uri = "https://github.com/bitwarden/cli/releases/download/v" + $version + "/" + $nupkg;
|
||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
||||
Invoke-RestMethod -Uri $uri -OutFile $($distChocoDir + "\" + $nupkg)
|
||||
|
||||
cd $distChocoDir
|
||||
choco push
|
||||
cd $rootDir
|
||||
32
apps/cli/scripts/snap-build.ps1
Normal file
32
apps/cli/scripts/snap-build.ps1
Normal file
@@ -0,0 +1,32 @@
|
||||
param (
|
||||
[Parameter(Mandatory=$true)]
|
||||
[string] $version
|
||||
)
|
||||
|
||||
# Dependencies:
|
||||
# 1. Install powershell, ex `sudo apt-get install -y powershell`
|
||||
#
|
||||
# To run:
|
||||
# ./snap-build.ps1 -version 1.1.0
|
||||
#
|
||||
# and then push to snap with:
|
||||
# cd ../dist/snap
|
||||
# snap push bw*.snap
|
||||
# or, use the ./snap-update.ps1 script
|
||||
|
||||
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$rootDir = $dir + "/.."
|
||||
$distDir = $rootDir + "/dist"
|
||||
$snapDir = $rootDir + "/stores/snap"
|
||||
$distSnapDir = $distDir + "/snap"
|
||||
$snapDistYaml = $distSnapDir + "/snapcraft.yaml"
|
||||
|
||||
if(Test-Path -Path $distSnapDir) {
|
||||
Remove-Item -Recurse -Force $distSnapDir
|
||||
}
|
||||
|
||||
Copy-Item -Path $snapDir -Destination $distSnapDir –Recurse
|
||||
(Get-Content $snapDistYaml).replace('__version__', $version) | Set-Content $snapDistYaml
|
||||
cd $distSnapDir
|
||||
snapcraft
|
||||
cd $rootDir
|
||||
12
apps/cli/scripts/snap-update.ps1
Normal file
12
apps/cli/scripts/snap-update.ps1
Normal file
@@ -0,0 +1,12 @@
|
||||
# Dependencies:
|
||||
# 1. Install powershell, ex `sudo apt-get install -y powershell`
|
||||
#
|
||||
# To run:
|
||||
# pwsh ./snap-update.ps1
|
||||
|
||||
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path;
|
||||
$rootDir = $dir + "/..";
|
||||
$distDir = $rootDir + "/dist";
|
||||
$distSnap = $distDir + "/snap/bw*.snap";
|
||||
|
||||
snapcraft push $distSnap --release stable
|
||||
Reference in New Issue
Block a user