mirror of https://github.com/coder/code-server.git
fix: add missing keytar deps (#5851)
* fix: add missing keytar deps * fixup
This commit is contained in:
parent
907747d394
commit
0ca6620ee6
|
@ -44,6 +44,8 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
yum install -y epel-release centos-release-scl make
|
yum install -y epel-release centos-release-scl make
|
||||||
yum install -y devtoolset-9-{make,gcc,gcc-c++} jq rsync python3
|
yum install -y devtoolset-9-{make,gcc,gcc-c++} jq rsync python3
|
||||||
|
# for keytar
|
||||||
|
yum install -y libsecret-devel
|
||||||
|
|
||||||
- name: Install nfpm and envsubst
|
- name: Install nfpm and envsubst
|
||||||
run: |
|
run: |
|
||||||
|
@ -170,6 +172,9 @@ jobs:
|
||||||
env:
|
env:
|
||||||
PACKAGE: ${{ format('g++-{0}', matrix.prefix) }}
|
PACKAGE: ${{ format('g++-{0}', matrix.prefix) }}
|
||||||
|
|
||||||
|
- name: Install keytar dependencies
|
||||||
|
run: sudo apt install -y libsecret-1-dev
|
||||||
|
|
||||||
- name: Download npm package
|
- name: Download npm package
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue