mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-12 10:04:44 +01:00
10 lines
228 B
PowerShell
10 lines
228 B
PowerShell
|
# To run:
|
|||
|
# ./snap-release.ps1
|
|||
|
|
|||
|
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path;
|
|||
|
$rootDir = $dir + "/..";
|
|||
|
$distDir = $rootDir + "/dist";
|
|||
|
$distSnap = $distDir + "/bitwarden*.snap";
|
|||
|
|
|||
|
snap push $distSnap --release stable
|