Skip to content

Commit 9405fd5

Browse files
committed
fix(ci): fix flutter package publish workflow
1 parent 0c6ece9 commit 9405fd5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ permissions:
1313

1414
jobs:
1515
build:
16+
if: ${{ !contains(github.event.head_commit.message, '[auto-update]') }}
1617
runs-on: ${{ matrix.os }}
1718
container: ${{ matrix.container && matrix.container || '' }}
1819
name: ${{ matrix.name }}${{ matrix.arch && format('-{0}', matrix.arch) || '' }} build${{ matrix.arch != 'arm64-v8a' && matrix.name != 'ios-sim' && matrix.name != 'ios' && matrix.name != 'apple-xcframework' && matrix.name != 'android-aar' && ( matrix.name != 'macos' || matrix.arch != 'x86_64' ) && ' + test' || ''}}
@@ -332,7 +333,7 @@ jobs:
332333
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
333334
git config --global user.name "$GITHUB_ACTOR"
334335
git add Package.swift
335-
git commit -m "Update Package.swift checksum for ${VERSION} [skip ci]" || true
336+
git commit -m "Update Package.swift checksum for ${VERSION} [auto-update]" || true
336337
git push origin main || true
337338
fi
338339

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.3.2"
19+
#define SQLITE_JS_VERSION "1.3.3"
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)