update doc

This commit is contained in:
Brian Madison 2025-11-14 07:10:01 -06:00
parent 7208610db8
commit e6b4f3f051
2 changed files with 12 additions and 4 deletions

View File

@ -175,7 +175,15 @@ jobs:
- name: Publish to NPM - name: Publish to NPM
env: env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 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 - name: Create GitHub Release with Bundles
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2

View File

@ -8,12 +8,12 @@
> **🚨 Alpha Version Notice** > **🚨 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:** > **Getting Started:**
> >
> - **Install v6 Alpha:** `npx bmad-method@alpha install` > - **Install v6 Alpha:** `npx bmad-method install`
> - **Install stable v4:** `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 > - **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) > - **v4 Users:** [View v4 documentation](https://github.com/bmad-code-org/BMAD-METHOD/tree/V4) or [upgrade guide](./docs/v4-to-v6-upgrade.md)