From feabb510b850eda50e45622ac74e9ddeec46063f Mon Sep 17 00:00:00 2001 From: IsmaelMartinez Date: Thu, 6 Jun 2024 13:11:11 +0100 Subject: [PATCH] Hotfix/snap publish failed (#1286) * fixing dbus not present and moving from yarn to npm * removing package-lock.json from .gitignore file * forcing the use of public npmrc * reverting the node versionn increase as the github action is not working' --- .github/workflows/snap.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/snap.yml b/.github/workflows/snap.yml index 82d06d6..f60da86 100644 --- a/.github/workflows/snap.yml +++ b/.github/workflows/snap.yml @@ -31,7 +31,7 @@ jobs: - name: Release if: contains(github.ref, 'develop') - run: npm run dist:linux:snap --publish always + run: npm run dist:linux:snap -- --publish always snap-armv7l: runs-on: ubuntu-latest @@ -56,4 +56,4 @@ jobs: - name: Release if: contains(github.ref, 'develop') - run: npm run dist:linux:snap:armv7l --publish always + run: npm run dist:linux:snap:armv7l -- --publish always