@@ -42,15 +42,15 @@ jobs:
4242 run : sudo apt-get update && sudo apt-get install -y cmake clang
4343 - if : ${{ !contains(matrix.target, 'linuxmusl') }}
4444 name : Build target
45- run : pnpm --filter @embedpdf/pdf-runtime build:target -- ${{ matrix.target }}
45+ run : pnpm --filter @embedpdf/pdf-runtime build:target ${{ matrix.target }}
4646 - if : ${{ contains(matrix.target, 'linuxmusl') }}
4747 name : Build musl target in Alpine
4848 run : |
4949 docker run --rm \
5050 -v "$GITHUB_WORKSPACE:/workspace" \
5151 -w /workspace \
5252 node:22-alpine \
53- sh -lc "apk add --no-cache bash cmake clang g++ make python3 curl tar git && corepack enable && pnpm install --frozen-lockfile && pnpm --filter @embedpdf/pdf-runtime build:target -- ${{ matrix.target }}"
53+ sh -lc "apk add --no-cache bash cmake clang g++ make python3 curl tar git && corepack enable && pnpm install --frozen-lockfile && pnpm --filter @embedpdf/pdf-runtime build:target ${{ matrix.target }}"
5454 - uses : actions/upload-artifact@v6
5555 with :
5656 name : pdf-runtime-${{ matrix.target }}
@@ -79,15 +79,15 @@ jobs:
7979 run : sudo apt-get update && sudo apt-get install -y cmake clang
8080 - if : ${{ !contains(matrix.target, 'linuxmusl') }}
8181 name : Build target
82- run : pnpm --filter @embedpdf/pdf-runtime build:target -- ${{ matrix.target }}
82+ run : pnpm --filter @embedpdf/pdf-runtime build:target ${{ matrix.target }}
8383 - if : ${{ contains(matrix.target, 'linuxmusl') }}
8484 name : Build musl target in Alpine
8585 run : |
8686 docker run --rm \
8787 -v "$GITHUB_WORKSPACE:/workspace" \
8888 -w /workspace \
8989 node:22-alpine \
90- sh -lc "apk add --no-cache bash cmake clang g++ make python3 curl tar git && corepack enable && pnpm install --frozen-lockfile && pnpm --filter @embedpdf/pdf-runtime build:target -- ${{ matrix.target }}"
90+ sh -lc "apk add --no-cache bash cmake clang g++ make python3 curl tar git && corepack enable && pnpm install --frozen-lockfile && pnpm --filter @embedpdf/pdf-runtime build:target ${{ matrix.target }}"
9191 - uses : actions/upload-artifact@v6
9292 with :
9393 name : pdf-runtime-${{ matrix.target }}
@@ -111,7 +111,7 @@ jobs:
111111 cache : pnpm
112112 - run : pnpm install --frozen-lockfile
113113 - name : Build target
114- run : pnpm --filter @embedpdf/pdf-runtime build:target -- ${{ matrix.target }}
114+ run : pnpm --filter @embedpdf/pdf-runtime build:target ${{ matrix.target }}
115115 - uses : actions/upload-artifact@v6
116116 with :
117117 name : pdf-runtime-${{ matrix.target }}
@@ -136,7 +136,7 @@ jobs:
136136 - run : pnpm install --frozen-lockfile
137137 - name : Build target
138138 shell : bash
139- run : pnpm --filter @embedpdf/pdf-runtime build:target -- ${{ matrix.target }}
139+ run : pnpm --filter @embedpdf/pdf-runtime build:target ${{ matrix.target }}
140140 - uses : actions/upload-artifact@v6
141141 with :
142142 name : pdf-runtime-${{ matrix.target }}
0 commit comments