From 5c566b0c0126da1d3baa2f3c69e26fe1cc63fe93 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Thu, 8 Dec 2022 12:45:13 -0700 Subject: [PATCH] I think this is it --- .github/workflows/release.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a97549962..83fb2e38b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -141,8 +141,10 @@ jobs: include: - prefix: aarch64-linux-gnu arch: arm64 + libArch: arm64 - prefix: arm-linux-gnueabihf arch: armv7l + libArch: armhf env: AR: ${{ format('{0}-ar', matrix.prefix) }} @@ -173,7 +175,9 @@ jobs: PACKAGE: ${{ format('g++-{0}', matrix.prefix) }} - name: Install keytar dependencies - run: sudo apt install -y libsecret-1-dev:armhf + run: sudo apt install -y $PACKAGE + env: + PACKAGE: ${{ format('libsecret-1-dev:{0}', matrix.libArch) }} - name: Download npm package uses: actions/download-artifact@v3