1
0
mirror of https://github.com/arduino/arduino-ide.git synced 2025-06-29 15:36:33 +00:00

fix: add missing linux dependencies for create-changelog job ()

This commit is contained in:
Giacomo Cusinato 2025-04-02 23:24:35 +09:00 committed by GitHub
parent 8aa3c28c50
commit 39c8db8e90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -29,6 +29,12 @@ jobs:
node-version: ${{ env.NODE_VERSION }} node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://registry.npmjs.org' 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 - name: Get Tag
id: tag_name id: tag_name
run: | run: |