Skip to content

Commit 095d827

Browse files
committed
fix(workflow): duplicate run on tag creation and add .pubignore to packages/flutter to publish with native_libraries folder
1 parent e85b871 commit 095d827

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: build, test and release sqlite-js
22
on:
33
push:
4+
tags-ignore:
5+
- '*'
46
workflow_dispatch:
57

68
permissions:

packages/flutter/.pubignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Only ignore development files, NOT native_libraries
2+
.dart_tool/
3+
pubspec.lock

packages/flutter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# sqlite_js
22

3-
SQLite JavaScript extension for Flutter/Dart. Execute JavaScript code directly within SQLite using the QuickJS engine.
3+
SQLite JS is a powerful extension that brings JavaScript capabilities to SQLite. With this extension, you can create custom SQLite functions, aggregates, window functions, and collation sequences using JavaScript code, allowing for flexible and powerful data manipulation directly within your SQLite database.
44

55
## Installation
66

0 commit comments

Comments
 (0)