From e6b4f3f051e14f5fd733546d9c09ccd1551154f6 Mon Sep 17 00:00:00 2001 From: Brian Madison Date: Fri, 14 Nov 2025 07:10:01 -0600 Subject: [PATCH] update doc --- .github/workflows/manual-release.yaml | 10 +++++++++- README.md | 6 +++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/manual-release.yaml b/.github/workflows/manual-release.yaml index 31152924..f216da50 100644 --- a/.github/workflows/manual-release.yaml +++ b/.github/workflows/manual-release.yaml @@ -175,7 +175,15 @@ jobs: - name: Publish to NPM env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npm publish + run: | + VERSION="${{ steps.version.outputs.new_version }}" + if [[ "$VERSION" == *"alpha"* ]] || [[ "$VERSION" == *"beta"* ]]; then + echo "Publishing prerelease version with --tag alpha" + npm publish --tag alpha + else + echo "Publishing stable version with --tag latest" + npm publish --tag latest + fi - name: Create GitHub Release with Bundles uses: softprops/action-gh-release@v2 diff --git a/README.md b/README.md index 6da7bf7b..568e9f21 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,12 @@ > **🚨 Alpha Version Notice** > -> v6-alpha is near-beta quality—stable and vastly improved over v4, but documentation is still being refined. New videos coming soon to the [BMadCode YouTube channel](https://www.youtube.com/@BMadCode)—subscribe for updates! +> v6-alpha is near-beta quality—stable and vastly improved over v4, but documentation is still being refined. New videos coming soon to the [BMadCode YouTube channel](https://www.youtube.com/@BMadCode)—subscribe for updates! (There is no v5). > > **Getting Started:** > -> - **Install v6 Alpha:** `npx bmad-method@alpha install` -> - **Install stable v4:** `npx bmad-method install` +> - **Install v6 Alpha:** `npx bmad-method install` +> - **Install stable v4:** `npx bmad-method@latest install` > - **Not sure what to do?** Load any agent and run `*workflow-init` for guided setup > - **v4 Users:** [View v4 documentation](https://github.com/bmad-code-org/BMAD-METHOD/tree/V4) or [upgrade guide](./docs/v4-to-v6-upgrade.md)