From efaced03304b7b9de183d636a7b5366a81222100 Mon Sep 17 00:00:00 2001 From: XuluWarrior Date: Sat, 14 Sep 2024 01:20:45 +0100 Subject: [PATCH] Install snapcraft for linux build --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 05a6306..bd46f00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,9 @@ jobs: - name: build-linux if: matrix.os == 'ubuntu-latest' - run: npm run build:linux + run: | + sudo snap install snapcraft --classic + npm run build:linux - name: build-mac if: matrix.os == 'macos-latest'