From 679bdf2867b4768d854608d0feb05dbad0c7c947 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Thu, 8 Dec 2022 12:33:07 -0700 Subject: [PATCH] fix: manually remove keytar --- .github/workflows/release.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7f43abba1..329ca8697 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -196,6 +196,14 @@ jobs: TAG="${{ inputs.version || github.ref_name }}" echo "VERSION=${TAG#v}" >> $GITHUB_ENV + # NOTE@jsjoeio - the dependencies needed for this + # aren't supported on this architecture so we remove + # it manually. + - name: Remove keytar + run: | + cd ./release-standalone/lib/vscode + npm uninstall keytar + - name: Build packages with nfpm env: VERSION: ${{ env.VERSION }}