Skip to content

Commit cabb280

Browse files
committed
Fix copying built sqlite file
1 parent 4d161e0 commit cabb280

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
make -j
3737
mkdir ../out
3838
cp sqlite3 ../out
39-
cp .libs/libsqlite3.so ../out
39+
cp libsqlite3.so ../out
4040
cp *.h ../out
4141
- name: Compile sqlite3 on Linux (no autoinit)
4242
if: steps.cache_sqlite_build.outputs.cache-hit != 'true' && runner.os == 'Linux'
@@ -62,7 +62,7 @@ jobs:
6262
make -j
6363
mkdir ../out
6464
cp sqlite3 ../out
65-
cp .libs/libsqlite3.dylib ../out
65+
cp libsqlite3.dylib ../out
6666
cp *.h ../out
6767
- uses: ilammy/msvc-dev-cmd@v1
6868
if: steps.cache_sqlite_build.outputs.cache-hit != 'true' && runner.os == 'Windows'

0 commit comments

Comments
 (0)