Skip to content

Commit 3f2f587

Browse files
committed
Remove sed command in favour of .pubignore
1 parent 48618c6 commit 3f2f587

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ 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-
4642
- name: Publish packages dry run
4743
run: |
4844
melos publish --yes --scope=$PACKAGE_NAME
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
*.class
2+
*.log
3+
*.pyc
4+
*.swp
5+
.DS_Store
6+
.atom/
7+
.buildlog/
8+
.history
9+
.svn/
10+
migrate_working_dir/
11+
12+
*.iml
13+
*.ipr
14+
*.iws
15+
.idea/
16+
17+
/pubspec.lock
18+
**/doc/api/
19+
.dart_tool/
20+
build/
21+
22+
!*.so
23+
!*.a
24+
!*.dylib
25+
!*.dll

0 commit comments

Comments
 (0)