From 987af07c79931a7f72d48d70bf6dc6debb1c0b60 Mon Sep 17 00:00:00 2001 From: Marsel Shaikhin Date: Mon, 27 Nov 2023 16:08:42 +0100 Subject: [PATCH] ci: fix NAPI pipeline --- .github/workflows/napi.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/napi.yml b/.github/workflows/napi.yml index d2b4f58..15f053f 100644 --- a/.github/workflows/napi.yml +++ b/.github/workflows/napi.yml @@ -35,7 +35,7 @@ jobs: target: x86_64-apple-darwin build: | yarn build - strip -x *.node + strip -x @fervid/*.node - host: windows-latest build: yarn build target: x86_64-pc-windows-msvc @@ -45,7 +45,7 @@ jobs: build: |- set -e && yarn build --target x86_64-unknown-linux-gnu && - strip *.node + strip @fervid/*.node defaults: run: working-directory: ${{ env.WORKING_DIR_PATH }} @@ -103,7 +103,7 @@ jobs: if: ${{ matrix.settings.docker }} with: image: ${{ matrix.settings.docker }} - options: '--user 0:0 -v ${{ github.workspace }}/.cargo-cache/git/db:/usr/local/cargo/git/db -v ${{ github.workspace }}/.cargo/registry/cache:/usr/local/cargo/registry/cache -v ${{ github.workspace }}/.cargo/registry/index:/usr/local/cargo/registry/index -v ${{ env.WORKING_DIR_PATH }}:/build -w /build' + options: '--user 0:0 -v ${{ github.workspace }}/.cargo-cache/git/db:/usr/local/cargo/git/db -v ${{ github.workspace }}/.cargo/registry/cache:/usr/local/cargo/registry/cache -v ${{ github.workspace }}/.cargo/registry/index:/usr/local/cargo/registry/index -v ${{ github.workspace }}:/build -w /build/crates/fervid_napi' run: ${{ matrix.settings.build }} - name: Build run: ${{ matrix.settings.build }}