mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
5b84c16b55
- Replace import.meta.dirname (Node 21.2+) with fileURLToPath workaround for Node 20 compatibility - Rename workflows to release / pre, release / publish, release / create-pr so they group together in the Actions UI - Fix semver regex to allow hyphens in prerelease identifiers - Add unit tests for parseSemver, computeNextStableVersion, computePrereleaseVersion
118 lines
3.6 KiB
YAML
118 lines
3.6 KiB
YAML
name: release / publish
|
|
|
|
on:
|
|
pull_request:
|
|
types: [closed]
|
|
branches: [main]
|
|
|
|
concurrency:
|
|
group: publish-release
|
|
cancel-in-progress: false
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
env:
|
|
NX_VERBOSE_LOGGING: true
|
|
|
|
jobs:
|
|
publish:
|
|
# Only run when a release PR is merged (not just closed)
|
|
if: >
|
|
github.event.pull_request.merged == true &&
|
|
startsWith(github.event.pull_request.head.ref, 'release/publish/v')
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
steps:
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: "10.13.1"
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.x
|
|
registry-url: https://registry.npmjs.org
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Configure npm auth
|
|
run: |
|
|
npm config set "//registry.npmjs.org/:_authToken" "${NPM_TOKEN}"
|
|
env:
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Install Dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Publish to npm
|
|
id: publish
|
|
run: pnpm tsx scripts/release/publish-release.ts
|
|
env:
|
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
NOTION_API_KEY: ${{ secrets.NOTION_API_KEY }}
|
|
|
|
- name: Configure git user
|
|
run: |
|
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --global user.name "github-actions[bot]"
|
|
|
|
- name: Create and push git tag
|
|
run: |
|
|
TAG="v${{ steps.publish.outputs.version }}"
|
|
git tag -a "$TAG" -m "Release ${{ steps.publish.outputs.version }}"
|
|
git push origin "$TAG"
|
|
|
|
- name: Create GitHub Release
|
|
uses: actions/github-script@v7
|
|
env:
|
|
RELEASE_TAG: v${{ steps.publish.outputs.version }}
|
|
RELEASE_NAME: v${{ steps.publish.outputs.version }}
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
script: |
|
|
const fs = require("fs");
|
|
const { owner, repo } = context.repo;
|
|
const tag = process.env.RELEASE_TAG;
|
|
const name = process.env.RELEASE_NAME;
|
|
|
|
let body = "";
|
|
try {
|
|
body = fs.readFileSync("./release-notes.md", "utf8");
|
|
} catch {
|
|
body = `Release ${name}`;
|
|
}
|
|
|
|
try {
|
|
const existing = await github.rest.repos.getReleaseByTag({ owner, repo, tag });
|
|
await github.rest.repos.updateRelease({
|
|
owner, repo,
|
|
release_id: existing.data.id,
|
|
tag_name: tag, name, body,
|
|
draft: false, prerelease: false,
|
|
});
|
|
} catch (error) {
|
|
if (error.status !== 404) throw error;
|
|
await github.rest.repos.createRelease({
|
|
owner, repo,
|
|
tag_name: tag, name, body,
|
|
draft: false, prerelease: false,
|
|
});
|
|
}
|
|
|
|
- name: Release summary
|
|
run: |
|
|
echo "## Release Published" >> $GITHUB_STEP_SUMMARY
|
|
echo "" >> $GITHUB_STEP_SUMMARY
|
|
echo "**Version:** ${{ steps.publish.outputs.version }}" >> $GITHUB_STEP_SUMMARY
|
|
echo "**Tag:** v${{ steps.publish.outputs.version }}" >> $GITHUB_STEP_SUMMARY
|
|
echo "**npm:** https://www.npmjs.com/package/@copilotkit/react-core/v/${{ steps.publish.outputs.version }}" >> $GITHUB_STEP_SUMMARY
|