Skip to content

Commit 8e3047b

Browse files
authored
fix: fix on-push-to-main issue (#5717)
Fixes a small issue with bash variable interpolation, `$provider_` gets interpreted as `${provider_}` instead of `${provider}_` and we want the latter. /test-all
1 parent 6225490 commit 8e3047b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/on-push-to-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
for provider in "postgresql" "mysql" "sqlite" "sqlserver" "cockroachdb"; do
3535
for build in "fast" "small"; do
3636
cp $PKG_DIR/$provider/query_compiler_${build}_bg.wasm $TARGET_DIR/query-compiler-$build-$provider.wasm
37-
cp $PKG_DIR/$provider_${build}.gz $TARGET_DIR/query-compiler-$build-$provider.wasm.gz
37+
cp $PKG_DIR/${provider}_${build}.gz $TARGET_DIR/query-compiler-$build-$provider.wasm.gz
3838
done
3939
done
4040

0 commit comments

Comments
 (0)