Skip to content

Commit f036811

Browse files
committed
fix(ci): fix flutter package publish workflow
Fix the tag in the automated Package.swift commit, it was preventing the flutter-package workflow from triggering on new releases. Update CHANGELOG.md with entries for 1.0.2, 1.0.7, and 1.0.8.
1 parent bb88733 commit f036811

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ permissions:
1414

1515
jobs:
1616
build:
17+
if: ${{ !contains(github.event.head_commit.message, '[auto-update]') }}
1718
runs-on: ${{ matrix.os }}
1819
container: ${{ matrix.container && matrix.container || '' }}
1920
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' || ''}}
@@ -239,6 +240,7 @@ jobs:
239240
if-no-files-found: error
240241

241242
postgres-test:
243+
if: ${{ !contains(github.event.head_commit.message, '[auto-update]') }}
242244
runs-on: ubuntu-22.04
243245
name: postgresql ${{ matrix.postgres_tag }} build + test
244246
timeout-minutes: 10
@@ -276,6 +278,7 @@ jobs:
276278
docker exec cloudsync-postgres psql -U postgres -d postgres -f /tmp/cloudsync/test/postgresql/full_test.sql
277279
278280
postgres-build:
281+
if: ${{ !contains(github.event.head_commit.message, '[auto-update]') }}
279282
runs-on: ${{ matrix.os }}
280283
name: postgresql${{ matrix.postgres_version }}-${{ matrix.name }}-${{ matrix.arch }} build
281284
timeout-minutes: 15
@@ -548,7 +551,7 @@ jobs:
548551
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
549552
git config --global user.name "$GITHUB_ACTOR"
550553
git add Package.swift
551-
git commit -m "Update Package.swift checksum for ${VERSION} [skip ci]" || true
554+
git commit -m "Update Package.swift checksum for ${VERSION} [auto-update]" || true
552555
git push origin main || true
553556
fi
554557

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [1.0.8] - 2026-04-03
8+
9+
### Changed
10+
11+
- **CI/CD**: Fix flutter package publish workflow not triggering on new releases.
12+
13+
## [1.0.7] - 2026-04-02
14+
15+
### Fixed
16+
17+
- **Harden table initialization against stale config and error cleanup.**
18+
19+
## [1.0.2] - 2026-03-25
20+
21+
### Fixed
22+
23+
- **Swift Package**: Use binary target and versioned macOS framework for Xcode 26 compatibility.
24+
- **Minor bugs** in tests, docs, and examples related to the 1.0.0 major release.
25+
726
## [1.0.0] - 2026-03-24
827

928
### Added

src/cloudsync.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
extern "C" {
1919
#endif
2020

21-
#define CLOUDSYNC_VERSION "1.0.7"
21+
#define CLOUDSYNC_VERSION "1.0.8"
2222
#define CLOUDSYNC_MAX_TABLENAME_LEN 512
2323

2424
#define CLOUDSYNC_VALUE_NOTSET -1

0 commit comments

Comments
 (0)