Skip to content

Commit fe717bb

Browse files
committed
fix(ci): fix flutter package publish workflow
1 parent 7cb2ea0 commit fe717bb

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.arch != 'armeabi-v7a' && matrix.name != 'ios-sim' && matrix.name != 'ios' && matrix.name != 'apple-xcframework' && matrix.name != 'android-aar' && ( matrix.name != 'macos' || matrix.arch != 'x86_64' ) && ' + test' || ''}}
@@ -361,7 +362,7 @@ jobs:
361362
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
362363
git config --global user.name "$GITHUB_ACTOR"
363364
git add Package.swift
364-
git commit -m "Update Package.swift checksum for ${VERSION} [skip ci]" || true
365+
git commit -m "Update Package.swift checksum for ${VERSION} [auto-update]" || true
365366
git push origin main || true
366367
fi
367368

src/sqlite-vector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
extern "C" {
2525
#endif
2626

27-
#define SQLITE_VECTOR_VERSION "0.9.94"
27+
#define SQLITE_VECTOR_VERSION "0.9.95"
2828

2929
SQLITE_VECTOR_API int sqlite3_vector_init (sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi);
3030

0 commit comments

Comments
 (0)