Skip to content

Commit d61a3fc

Browse files
committed
Prepare 1.0.1 Release
1 parent 82c90e9 commit d61a3fc

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/reusable-npm.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ jobs:
3232
node-version: 20
3333

3434
- name: Install dependencies
35-
run: npm ci
35+
run: |
36+
sudo apt-get install libsecret-1-dev
37+
npm ci
3638
3739
- name: Build package
3840
run: npm run build -w ${{ inputs.package_workspace }}
@@ -66,7 +68,9 @@ jobs:
6668
registry-url: "https://registry.npmjs.org"
6769

6870
- name: Install dependencies
69-
run: npm ci
71+
run: |
72+
sudo apt-get install libsecret-1-dev
73+
npm ci
7074
7175
- name: Publish next version
7276
if: github.event_name == 'push' && steps.version_check.outputs.is_next_version == 'true'

0 commit comments

Comments
 (0)