Skip to content

Commit df98287

Browse files
committed
fix(ci): correct .so path in release workflow (/src/src/.libs/)
1 parent 1cbbedd commit df98287

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
# Extract compiled VMOD (.so)
4545
docker run --rm --platform linux/${{ matrix.arch }} \
4646
vmod-wasm-release-${{ matrix.arch }} sh -c \
47-
'cat /src/.libs/libvmod_wasm.so' \
47+
'cat /src/src/.libs/libvmod_wasm.so' \
4848
> "dist/libvmod_wasm-${{ steps.version.outputs.version }}-varnish9-linux-${{ matrix.arch }}.so"
4949
# Extract .wasm modules (architecture-independent, only needed once)
5050
if [ "${{ matrix.arch }}" = "amd64" ]; then

0 commit comments

Comments
 (0)