From ebcebd61dde93f26291e13d0bbd87aac0690bcdf Mon Sep 17 00:00:00 2001 From: Cobus Greyling Date: Thu, 27 Aug 2026 19:46:26 +0200 Subject: [PATCH] fix: use changesets/action v2 input names in Release workflow --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 089cace..919330e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,10 +53,10 @@ jobs: - name: Create release PR or publish uses: changesets/action@v2 with: - version: pnpm run version:ci - publish: pnpm run release - commit: "chore: version packages" - title: "chore: version packages" + version-script: pnpm run version:ci + publish-script: pnpm run release + commit-message: "chore: version packages" + pr-title: "chore: version packages" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ env.NPM_TOKEN }} \ No newline at end of file + NPM_TOKEN: ${{ env.NPM_TOKEN }}