update doc
This commit is contained in:
parent
7208610db8
commit
e6b4f3f051
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue