From adc59bb4bda5264e57a8f3a2c7b029fcf968d8b4 Mon Sep 17 00:00:00 2001 From: Zackary Troop Date: Wed, 20 Mar 2024 00:52:16 -0400 Subject: [PATCH] Add dependencies to workflow --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 324015a..baad911 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,6 +30,9 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Install dependencies + run: sudo apt update && sudo apt install -y libdbus-1-dev pkg-config + - name: Get the release version from the tag shell: bash run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV