Skip to content

Commit c9acd7a

Browse files
committed
fix(workflow): missing setup dart step
1 parent 584c303 commit c9acd7a

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,9 @@ jobs:
345345
echo " Platform packages: 7"
346346
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
347347
348+
- uses: dart-lang/setup-dart@v1.7.1
349+
if: steps.tag.outputs.version != ''
350+
348351
- name: assemble and publish flutter package
349352
if: steps.tag.outputs.version != ''
350353
run: |
@@ -383,6 +386,7 @@ jobs:
383386
384387
# Publish to pub.dev
385388
cd $FLUTTER_DIR
389+
dart pub get
386390
dart pub publish --dry-run
387391
dart pub publish --force
388392

packages/flutter/CHANGELOG.md

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

3-
## 1.1.18
3+
## 1.1.19
44

55
- Initial Flutter package release
66
- Added support for Android 16kb page size devices

packages/flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sqlite_js
2-
version: 1.1.18
2+
version: 1.1.19
33
description: >
44
SQLite JS is a powerful extension that brings JavaScript capabilities to SQLite.
55
With this extension, you can create custom SQLite functions, aggregates,

src/sqlitejs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include "sqlite3.h"
1717
#endif
1818

19-
#define SQLITE_JS_VERSION "1.1.18"
19+
#define SQLITE_JS_VERSION "1.1.19"
2020

2121
int sqlite3_js_init (sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi);
2222
const char *sqlitejs_version (void);

0 commit comments

Comments
 (0)