Skip to content

Commit bfa44c9

Browse files
committed
Update gitignore to publish binaries
1 parent c2802fb commit bfa44c9

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ jobs:
3939
echo "PACKAGE_NAME=$PACKAGE_NAME" >> $GITHUB_ENV
4040
echo "Package name: $PACKAGE_NAME"
4141
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+
4246
- name: Publish packages dry run
4347
run: |
4448
melos publish --yes --scope=$PACKAGE_NAME

packages/powersync_flutter_libs/.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ migrate_working_dir/
2828
.dart_tool/
2929
build/
3030

31-
!*.so
31+
*.so
3232
*.a
33-
!*.dylib
34-
!*.dll
33+
*.dylib
34+
*.dll

0 commit comments

Comments
 (0)