diff --git a/.github/workflows/native-compile-linux.yml b/.github/workflows/native-compile-linux.yml index 2dfc57e8a8305abc3546fa101c79e89241282c7d..3b484131c7dc580483b5b9d3df2fe3dbcca93ef0 100644 --- a/.github/workflows/native-compile-linux.yml +++ b/.github/workflows/native-compile-linux.yml @@ -1,6 +1,10 @@ name: Linux -on: [push] +on: + push: + # Sequence of patterns matched against refs/tags + tags: + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 env: CONAN_USER_HOME : ${{ github.workspace }}/.conan diff --git a/native/conan/conanfile.txt b/native/conan/conanfile.txt index dda0ec5267ff2f2fa830663a35cfb87ca7cecbfd..77c1c0a1f88b20f77e74a709a63498e2a38e1940 100644 --- a/native/conan/conanfile.txt +++ b/native/conan/conanfile.txt @@ -19,8 +19,13 @@ sqlite3/3.38.5 [options] *:fPIC=True +*:shared=False freetype:with_brotli=False freetype:with_bzip2=False [generators] cmake + +[imports] +bin, *.a -> ./bin # Copies all a files from packages bin folder to my local "bin" folder +lib, *.a -> ./lib # Copies all dylib files from packages lib folder to my local "bin" folder \ No newline at end of file