mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-07 09:31:31 +01:00
45eaa24b0c
* Removing branch constraints on when to expose build assets * updating to snap 5.0 * adding more snapcraft 5.0 specific updates * installing multipass * fixing syntax error * switching from using a VM via multipass to using lxd * trying the official snap build actions * fixing error * commenting out the snapcraft version * testing the new changes to the snapcraft.yml file * nameing the build snap task * naming the build snap task
18 lines
377 B
YAML
18 lines
377 B
YAML
name: bw
|
|
version: __version__
|
|
summary: Bitwarden CLI
|
|
description: A secure and free password manager for all of your devices.
|
|
confinement: strict
|
|
base: core18
|
|
apps:
|
|
bw:
|
|
command: bw
|
|
plugs: [network, home, network-bind]
|
|
parts:
|
|
bw:
|
|
plugin: dump
|
|
source: ./bw-linux-$SNAPCRAFT_PROJECT_VERSION.zip
|
|
override-build: |
|
|
chmod +x bw
|
|
snapcraftctl build
|