diff options
author | Michał Sawicz <michal@sawicz.net> | 2021-02-26 17:42:50 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-02-26 09:57:24 -0800 |
commit | a72f2ac92de106cc801d98dcda35e5ca60c14d80 (patch) | |
tree | 32305dc24376fc0d4bf8afa4ffb25b22ba74b38d /.github | |
parent | fdcfcb1b329a7388fbbd0fa801d61fddb0f961d4 (diff) | |
download | subsurface-a72f2ac92de106cc801d98dcda35e5ca60c14d80.tar.gz |
[snap] use setup-lxd action
The Snapcraft action unnecessarily tries to migrate things.
Signed-off-by: Michał Sawicz <michal@sawicz.net>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux-snap.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/linux-snap.yml b/.github/workflows/linux-snap.yml index 325318c0a..1f69e232b 100644 --- a/.github/workflows/linux-snap.yml +++ b/.github/workflows/linux-snap.yml @@ -19,8 +19,13 @@ jobs: steps: - name: Install Snapcraft uses: samuelmeuli/action-snapcraft@v1 - with: - use_lxd: true + + - name: Setup LXD + uses: whywaita/setup-lxd@v1 + + - name: Add user to LXD group + run: | + sudo adduser ${USER} lxd - name: Check out code uses: actions/checkout@v2 |