From a9bfda24892458de65840e1b352ace3f931be2b3 Mon Sep 17 00:00:00 2001 From: Magnus Jensen Date: Fri, 22 Mar 2024 15:48:48 +0100 Subject: [PATCH] fix clash with yarn version command (#9) --- .changeset/hip-needles-promise.md | 7 +++++++ .github/workflows/release.yml | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .changeset/hip-needles-promise.md diff --git a/.changeset/hip-needles-promise.md b/.changeset/hip-needles-promise.md new file mode 100644 index 0000000..ee8e6e6 --- /dev/null +++ b/.changeset/hip-needles-promise.md @@ -0,0 +1,7 @@ +--- +"@cedar-codegen/cli": patch +"@cedar-codegen/common": patch +"@cedar-codegen/core": patch +--- + +Fix clash with regular yarn version command diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 46c143a..8ed0757 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,8 +28,8 @@ jobs: - name: Changeset uses: changesets/action@v1 with: - publish: yarn publish - version: yarn version + publish: yarn run publish + version: yarn run version env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}