From 29e6b99a0917b4b0d890fa278c10eba115931cf9 Mon Sep 17 00:00:00 2001 From: Rodrigo Delduca Date: Thu, 9 Jul 2026 13:29:09 -0300 Subject: [PATCH] feat(ci): adopt release-please for automated releases Why: framework publishes 14 modules from one repo, all version-locked to a single git tag, but releases and tags are cut manually with no changelog or automated bump. What: add the shared reusable-release.yml@v1 workflow plus a single-package release-please config and manifest baselined at the current release (0.3.16). On merge of the release PR, release-please creates the GitHub release, which triggers the existing publish.yml (release: published) to publish all 14 packages at that tag. No extra-files: package versions come from the release tag, so the many nested _index.yaml files are left untouched. publish is disabled in the reusable workflow since publish.yml already handles it. --- .github/workflows/release.yml | 20 ++++++++++++++++++++ .release-please-manifest.json | 3 +++ release-please-config.json | 10 ++++++++++ 3 files changed, 33 insertions(+) create mode 100644 .github/workflows/release.yml create mode 100644 .release-please-manifest.json create mode 100644 release-please-config.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..0ccfa78 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,20 @@ +name: Release + +on: + push: + branches: [master] + +permissions: + contents: write + pull-requests: write + +concurrency: + group: release-${{ github.ref }} + cancel-in-progress: false + +jobs: + release: + uses: wippyai/template-module/.github/workflows/reusable-release.yml@v1 + with: + publish: false + secrets: inherit diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..da5aa0d --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.3.16" +} diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..c4a4bcf --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", + "release-type": "simple", + "packages": { + ".": { + "package-name": "framework", + "include-component-in-tag": false + } + } +}