Skip to content

Commit 4387c55

Browse files
committed
fix(ci): fix flutter package publish workflow
1 parent 479a86c commit 4387c55

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
@@ -20,6 +20,7 @@ permissions:
2020

2121
jobs:
2222
build:
23+
if: ${{ !contains(github.event.head_commit.message, '[auto-update]') }}
2324
runs-on: ${{ matrix.os }}
2425
container: ${{ matrix.container && matrix.container || '' }}
2526
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' || ''}}
@@ -380,7 +381,7 @@ jobs:
380381
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
381382
git config --global user.name "$GITHUB_ACTOR"
382383
git add Package.swift
383-
git commit -m "Update Package.swift checksum for ${VERSION} [skip ci]" || true
384+
git commit -m "Update Package.swift checksum for ${VERSION} [auto-update]" || true
384385
git push origin main || true
385386
fi
386387

src/sqlite-mcp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
extern "C" {
2828
#endif
2929

30-
#define SQLITE_MCP_VERSION "0.1.7"
30+
#define SQLITE_MCP_VERSION "0.1.8"
3131

3232
/**
3333
* SQLite extension entry point

0 commit comments

Comments
 (0)