mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-02 08:40:08 +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
|