From 575453aba4a1e6bd04fe821cab1c9082be33afff Mon Sep 17 00:00:00 2001 From: Giacomo Cusinato <7659518+giacomocusinato@users.noreply.github.com> Date: Wed, 2 Apr 2025 23:16:15 +0900 Subject: [PATCH] fix: add missing linux dependencies for `create-changelog` job --- .github/workflows/compose-full-changelog.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/compose-full-changelog.yml b/.github/workflows/compose-full-changelog.yml index 2c328e52e..0e669cf8f 100644 --- a/.github/workflows/compose-full-changelog.yml +++ b/.github/workflows/compose-full-changelog.yml @@ -29,6 +29,12 @@ jobs: node-version: ${{ env.NODE_VERSION }} registry-url: 'https://registry.npmjs.org' + - name: Install Dependencies (Linux only) + if: runner.os == 'Linux' + run: | + sudo apt-get update + sudo apt-get install -y libx11-dev libxkbfile-dev libsecret-1-dev + - name: Get Tag id: tag_name run: |