From 7b42a85a3c9059a4231a0017de0a263f97446bfd Mon Sep 17 00:00:00 2001 From: stijnvanhulle <5904681+stijnvanhulle@users.noreply.github.com> Date: Tue, 14 Jul 2026 21:00:32 +0000 Subject: [PATCH] chore(examples): update generated files --- .github/canary.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 .github/canary.sh diff --git a/.github/canary.sh b/.github/canary.sh new file mode 100755 index 000000000..e0baffe6d --- /dev/null +++ b/.github/canary.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +npm --no-git-tag-version version minor || true + +version=$(node -p "require('./package.json').version") +canary_date=$(date +'%Y%m%dT%H%M%S') +canary_version=$(echo $version'-canary.'$canary_date) + +echo "Version that will be published: $canary_version" +npm --no-git-tag-version version $canary_version || true