We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b37897 commit 5c566b0Copy full SHA for 5c566b0
.github/workflows/release.yaml
@@ -141,8 +141,10 @@ jobs:
141
include:
142
- prefix: aarch64-linux-gnu
143
arch: arm64
144
+ libArch: arm64
145
- prefix: arm-linux-gnueabihf
146
arch: armv7l
147
+ libArch: armhf
148
149
env:
150
AR: ${{ format('{0}-ar', matrix.prefix) }}
@@ -173,7 +175,9 @@ jobs:
173
175
PACKAGE: ${{ format('g++-{0}', matrix.prefix) }}
174
176
177
- name: Install keytar dependencies
- run: sudo apt install -y libsecret-1-dev:armhf
178
+ run: sudo apt install -y $PACKAGE
179
+ env:
180
+ PACKAGE: ${{ format('libsecret-1-dev:{0}', matrix.libArch) }}
181
182
- name: Download npm package
183
uses: actions/download-artifact@v3
0 commit comments