mirror of
https://github.com/cdr/code-server.git
synced 2025-12-07 17:02:27 +01:00
I think this is it
This commit is contained in:
parent
9b37897899
commit
5c566b0c01
1 changed files with 5 additions and 1 deletions
6
.github/workflows/release.yaml
vendored
6
.github/workflows/release.yaml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue