We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2802fb commit bfa44c9Copy full SHA for bfa44c9
.github/workflows/publish.yml
@@ -39,6 +39,10 @@ jobs:
39
echo "PACKAGE_NAME=$PACKAGE_NAME" >> $GITHUB_ENV
40
echo "Package name: $PACKAGE_NAME"
41
42
+ - name: Update gitignore
43
+ run: |
44
+ sed -i '' -e 's/*.so/!*.so/g; s/*.dll/!*.dll/g; s/*.dylib/!*.dylib/g' packages/powersync_flutter_libs/.gitignore
45
+
46
- name: Publish packages dry run
47
run: |
48
melos publish --yes --scope=$PACKAGE_NAME
packages/powersync_flutter_libs/.gitignore
@@ -28,7 +28,7 @@ migrate_working_dir/
28
.dart_tool/
29
build/
30
31
-!*.so
+*.so
32
*.a
33
-!*.dylib
34
-!*.dll
+*.dylib
+*.dll
0 commit comments