Skip to content

Commit 39c8db8

Browse files
fix: add missing linux dependencies for create-changelog job (#2677)
1 parent 8aa3c28 commit 39c8db8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/compose-full-changelog.yml

+6
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ jobs:
2929
node-version: ${{ env.NODE_VERSION }}
3030
registry-url: 'https://registry.npmjs.org'
3131

32+
- name: Install Dependencies (Linux only)
33+
if: runner.os == 'Linux'
34+
run: |
35+
sudo apt-get update
36+
sudo apt-get install -y libx11-dev libxkbfile-dev libsecret-1-dev
37+
3238
- name: Get Tag
3339
id: tag_name
3440
run: |

0 commit comments

Comments
 (0)