Compare commits
9 Commits
7857b17626
...
30a98633cd
| Author | SHA1 | Date |
|---|---|---|
|
|
30a98633cd | |
|
|
b7315c6e32 | |
|
|
6a0046917a | |
|
|
c8f5b60598 | |
|
|
7bc2b5e0e0 | |
|
|
1ed5c9d94b | |
|
|
fb76895145 | |
|
|
ebf1513069 | |
|
|
10f02a8f15 |
|
|
@ -1,82 +0,0 @@
|
||||||
name: Publish Latest
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
bump:
|
|
||||||
description: "Version bump type"
|
|
||||||
required: true
|
|
||||||
default: "patch"
|
|
||||||
type: choice
|
|
||||||
options:
|
|
||||||
- patch
|
|
||||||
- minor
|
|
||||||
- major
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: publish-latest
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
id-token: write
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
publish:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Setup Node
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version-file: ".nvmrc"
|
|
||||||
cache: "npm"
|
|
||||||
registry-url: "https://registry.npmjs.org"
|
|
||||||
|
|
||||||
- name: Configure git user
|
|
||||||
run: |
|
|
||||||
git config user.name "github-actions[bot]"
|
|
||||||
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: npm ci
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: npm test
|
|
||||||
|
|
||||||
- name: Bump version
|
|
||||||
run: 'npm version ${{ inputs.bump }} -m "chore(release): v%s [skip ci]"'
|
|
||||||
|
|
||||||
- name: Publish to npm
|
|
||||||
run: npm publish --tag latest --provenance
|
|
||||||
env:
|
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
||||||
|
|
||||||
- name: Push version commit and tag
|
|
||||||
run: git push origin main --follow-tags
|
|
||||||
|
|
||||||
- name: Create GitHub Release
|
|
||||||
run: |
|
|
||||||
TAG="v$(node -p 'require("./package.json").version')"
|
|
||||||
gh release create "$TAG" --generate-notes
|
|
||||||
env:
|
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Notify Discord
|
|
||||||
continue-on-error: true
|
|
||||||
run: |
|
|
||||||
set -o pipefail
|
|
||||||
source .github/scripts/discord-helpers.sh
|
|
||||||
[ -z "$WEBHOOK" ] && exit 0
|
|
||||||
|
|
||||||
VERSION=$(node -p 'require("./package.json").version')
|
|
||||||
RELEASE_URL="${{ github.server_url }}/${{ github.repository }}/releases/tag/v${VERSION}"
|
|
||||||
MSG=$(printf '📦 **[bmad-method v%s released](<%s>)**' "$VERSION" "$RELEASE_URL" | esc)
|
|
||||||
|
|
||||||
jq -n --arg content "$MSG" '{content: $content}' | curl -sf --retry 2 -X POST "$WEBHOOK" -H "Content-Type: application/json" -d @-
|
|
||||||
env:
|
|
||||||
WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
|
||||||
|
|
@ -1,65 +0,0 @@
|
||||||
name: Publish Next
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
paths:
|
|
||||||
- "src/**"
|
|
||||||
- "tools/cli/**"
|
|
||||||
- "package.json"
|
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: publish-next
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
id-token: write
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
publish:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Setup Node
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version-file: ".nvmrc"
|
|
||||||
cache: "npm"
|
|
||||||
registry-url: "https://registry.npmjs.org"
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: npm ci
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: npm test
|
|
||||||
|
|
||||||
- name: Derive next prerelease version
|
|
||||||
run: |
|
|
||||||
NEXT_VER=$(npm view bmad-method@next version 2>/dev/null || echo "")
|
|
||||||
LATEST_VER=$(npm view bmad-method@latest version 2>/dev/null || echo "")
|
|
||||||
|
|
||||||
# Determine the best base version for the next prerelease
|
|
||||||
BASE=$(node -e "
|
|
||||||
const semver = require('semver');
|
|
||||||
const next = process.argv[1] || null;
|
|
||||||
const latest = process.argv[2] || null;
|
|
||||||
if (!next && !latest) process.exit(0);
|
|
||||||
if (!next) { console.log(latest); process.exit(0); }
|
|
||||||
if (!latest) { console.log(next); process.exit(0); }
|
|
||||||
// If latest is newer than next's base, use latest (next prerelease will be based on it)
|
|
||||||
const nextBase = next.replace(/-next\.\d+$/, '');
|
|
||||||
console.log(semver.gt(latest, nextBase) ? latest : next);
|
|
||||||
" "$NEXT_VER" "$LATEST_VER")
|
|
||||||
|
|
||||||
if [ -n "$BASE" ]; then
|
|
||||||
npm version "$BASE" --no-git-tag-version --allow-same-version
|
|
||||||
fi
|
|
||||||
npm version prerelease --preid=next --no-git-tag-version
|
|
||||||
|
|
||||||
- name: Publish to npm
|
|
||||||
run: npm publish --tag next --provenance
|
|
||||||
env:
|
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
||||||
|
|
@ -9,9 +9,17 @@ on:
|
||||||
- "package.json"
|
- "package.json"
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
bump:
|
channel:
|
||||||
description: "Version bump type"
|
description: "Publish channel"
|
||||||
required: true
|
required: true
|
||||||
|
default: "latest"
|
||||||
|
type: choice
|
||||||
|
options:
|
||||||
|
- latest
|
||||||
|
- next
|
||||||
|
bump:
|
||||||
|
description: "Version bump type (latest channel only)"
|
||||||
|
required: false
|
||||||
default: "patch"
|
default: "patch"
|
||||||
type: choice
|
type: choice
|
||||||
options:
|
options:
|
||||||
|
|
@ -43,10 +51,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version-file: ".nvmrc"
|
node-version-file: ".nvmrc"
|
||||||
cache: "npm"
|
cache: "npm"
|
||||||
registry-url: "https://registry.npmjs.org"
|
|
||||||
|
- name: Ensure trusted publishing toolchain
|
||||||
|
run: |
|
||||||
|
# npm trusted publishing requires Node >= 22.14.0 and npm >= 11.5.1.
|
||||||
|
npm install --global npm@11.6.2
|
||||||
|
|
||||||
- name: Configure git user
|
- name: Configure git user
|
||||||
if: github.event_name == 'workflow_dispatch'
|
if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
|
||||||
run: |
|
run: |
|
||||||
git config user.name "github-actions[bot]"
|
git config user.name "github-actions[bot]"
|
||||||
git config user.email "github-actions[bot]@users.noreply.github.com"
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
|
|
@ -58,7 +70,7 @@ jobs:
|
||||||
run: npm test
|
run: npm test
|
||||||
|
|
||||||
- name: Derive next prerelease version
|
- name: Derive next prerelease version
|
||||||
if: github.event_name == 'push'
|
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.channel == 'next')
|
||||||
run: |
|
run: |
|
||||||
NEXT_VER=$(npm view bmad-method@next version 2>/dev/null || echo "")
|
NEXT_VER=$(npm view bmad-method@next version 2>/dev/null || echo "")
|
||||||
LATEST_VER=$(npm view bmad-method@latest version 2>/dev/null || echo "")
|
LATEST_VER=$(npm view bmad-method@latest version 2>/dev/null || echo "")
|
||||||
|
|
@ -81,23 +93,23 @@ jobs:
|
||||||
npm version prerelease --preid=next --no-git-tag-version
|
npm version prerelease --preid=next --no-git-tag-version
|
||||||
|
|
||||||
- name: Bump stable version
|
- name: Bump stable version
|
||||||
if: github.event_name == 'workflow_dispatch'
|
if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
|
||||||
run: 'npm version ${{ inputs.bump }} -m "chore(release): v%s [skip ci]"'
|
run: 'npm version ${{ inputs.bump }} -m "chore(release): v%s [skip ci]"'
|
||||||
|
|
||||||
- name: Publish prerelease to npm
|
- name: Publish prerelease to npm
|
||||||
if: github.event_name == 'push'
|
if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && inputs.channel == 'next')
|
||||||
run: npm publish --tag next --provenance
|
run: npm publish --tag next --provenance
|
||||||
|
|
||||||
- name: Publish stable release to npm
|
- name: Publish stable release to npm
|
||||||
if: github.event_name == 'workflow_dispatch'
|
if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
|
||||||
run: npm publish --tag latest --provenance
|
run: npm publish --tag latest --provenance
|
||||||
|
|
||||||
- name: Push version commit and tag
|
- name: Push version commit and tag
|
||||||
if: github.event_name == 'workflow_dispatch'
|
if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
|
||||||
run: git push origin main --follow-tags
|
run: git push origin main --follow-tags
|
||||||
|
|
||||||
- name: Create GitHub Release
|
- name: Create GitHub Release
|
||||||
if: github.event_name == 'workflow_dispatch'
|
if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
|
||||||
run: |
|
run: |
|
||||||
TAG="v$(node -p 'require("./package.json").version')"
|
TAG="v$(node -p 'require("./package.json").version')"
|
||||||
gh release create "$TAG" --generate-notes
|
gh release create "$TAG" --generate-notes
|
||||||
|
|
@ -105,7 +117,7 @@ jobs:
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Notify Discord
|
- name: Notify Discord
|
||||||
if: github.event_name == 'workflow_dispatch'
|
if: github.event_name == 'workflow_dispatch' && inputs.channel == 'latest'
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue