From 7f86e0e8fe3cf3e1a09e7b556d13aad33d02a4ed Mon Sep 17 00:00:00 2001 From: Johannes Faltermeier Date: Wed, 18 Dec 2024 13:11:26 +0100 Subject: [PATCH] Fix NPM Publish --- .github/workflows/reusable-npm.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable-npm.yml b/.github/workflows/reusable-npm.yml index da13fde2..aa4195aa 100644 --- a/.github/workflows/reusable-npm.yml +++ b/.github/workflows/reusable-npm.yml @@ -68,7 +68,9 @@ jobs: registry-url: "https://registry.npmjs.org" - name: Install dependencies - run: npm ci + run: | + sudo apt-get install libsecret-1-dev + npm ci - name: Publish next version if: github.event_name == 'push' && steps.version_check.outputs.is_next_version == 'true'