Skip to content

Commit e71679d

Browse files
committed
updates
1 parent 7ffa286 commit e71679d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/scripts/common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ compute_release_versions() {
8080
local build="${pkg}+$((GITHUB_RUN_NUMBER + RUN_OFFSET))"
8181
local pypi="${build/+/.dev}"
8282
echo "compute_release_versions: _next_dev_from -> pkg=${pkg} build=${build} pypi=${pypi}" >&2
83-
printf '%s %s %s' "$pkg" "$build" "$pypi"
83+
printf '%s %s %s\n' "$pkg" "$build" "$pypi"
8484
}
8585

8686
# ---------------- pyproject flow ----------------

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
id: versions
102102
run: |
103103
source "$SCRIPTS/common.sh"
104-
compute_release_versions
104+
RUN_OFFSET=6000 compute_release_versions
105105
106106
- name: Setup Flutter
107107
uses: kuhnroyal/flutter-fvm-config-action/setup@v3

.github/workflows/extensions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
working-directory: ${{ env.SDK_PYTHON }}/packages
5656
run: |
5757
source "$SCRIPTS/common.sh"
58-
compute_release_versions "flet-ads"
58+
RUN_OFFSET=500 compute_release_versions "flet-ads"
5959
6060
pushd "src/flutter/flet_ads"
6161
patch_pubspec_version "pubspec.yaml" "$PKG_VER"

0 commit comments

Comments
 (0)