Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable Changesets for v5 releases #1717

Merged
merged 1 commit into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"fixed": [["@comet/*"]],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"baseBranch": "v5.x.x",
"updateInternalDependencies": "patch",
"ignore": ["comet-admin-stories", "comet-demo-api", "comet-demo-admin", "comet-demo-site", "comet-docs"],
"snapshot": {
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Release
name: Release (v5)

on:
push:
branches:
- main
- v5.x.x

concurrency: ${{ github.workflow }}-${{ github.ref }}

Expand Down Expand Up @@ -42,7 +42,8 @@ jobs:
uses: dotansimha/changesets-action@cbc5ff3569ae9861100a48b290f4e9c1b94e45b5
with:
version: pnpm run version
publish: pnpm run publish
publish: pnpm run publish --tag=stable-v5
title: "Version Packages (v5)"
createGithubReleases: aggregate
githubReleaseName: "${{ env.PUBLISHED_VERSION }}"
githubTagName: "v${{ env.PUBLISHED_VERSION }}"
Expand Down
Loading