Skip to content

Commit 24b21fb

Browse files
committed
fix(ci): fix flutter package publish workflow
1 parent f596bc5 commit 24b21fb

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ env:
2424

2525
jobs:
2626
download-models:
27+
if: ${{ !contains(github.event.head_commit.message, '[auto-update]') }}
2728
outputs:
2829
gguf-cache-key: gguf-${{ steps.meta.outputs.gguf-hash }}
2930
gguf-model-path: ${{ env.GGUF_MODEL_DIR }}/${{ env.GGUF_MODEL_NAME }}
@@ -99,6 +100,7 @@ jobs:
99100
run: test -f "${{ env.AUDIO_TEST_WAV }}"
100101

101102
build:
103+
if: ${{ !contains(github.event.head_commit.message, '[auto-update]') }}
102104
needs: download-models
103105
runs-on: ${{ matrix.os }}
104106
container: ${{ matrix.container && matrix.container || '' }}
@@ -635,7 +637,7 @@ jobs:
635637
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
636638
git config --global user.name "$GITHUB_ACTOR"
637639
git add Package.swift
638-
git commit -m "Update Package.swift checksum for ${VERSION} [skip ci]" || true
640+
git commit -m "Update Package.swift checksum for ${VERSION} [auto-update]" || true
639641
git push origin main || true
640642
fi
641643

src/sqlite-ai.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_AI_VERSION "1.0.3"
27+
#define SQLITE_AI_VERSION "1.0.4"
2828

2929
SQLITE_AI_API int sqlite3_ai_init (sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi);
3030

0 commit comments

Comments
 (0)