From ad4622a8536c8ef9c5feec2e447f36c2629ecbca Mon Sep 17 00:00:00 2001 From: Jonathan Haines Date: Wed, 9 Apr 2025 19:37:30 +1000 Subject: [PATCH] fix(zod-openapi): republish without workspace reference (#1111) fixes #1109 --- .changeset/full-words-design.md | 5 +++++ .github/workflows/release.yml | 6 ++---- package.json | 3 ++- 3 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 .changeset/full-words-design.md diff --git a/.changeset/full-words-design.md b/.changeset/full-words-design.md new file mode 100644 index 00000000..105cd4e8 --- /dev/null +++ b/.changeset/full-words-design.md @@ -0,0 +1,5 @@ +--- +'@hono/zod-openapi': patch +--- + +Republish v0.19.3 without workspace reference diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed029c7b..f0976ce5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,14 +23,12 @@ jobs: - name: Install Dependencies run: yarn - - name: Build - run: yarn build - - name: Create Release Pull Request or Publish to npm id: changesets uses: changesets/action@v1 with: - publish: yarn changeset publish + publish: yarn run publish + version: yarn changeset version env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/package.json b/package.json index b3d10988..36924d1c 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "scripts": { "build": "yarn workspaces foreach --all --topological --verbose run build", "publint": "yarn workspaces foreach --all --topological --verbose run publint", + "publish": "yarn workspaces foreach --all --no-private --topological --verbose npm publish --tolerate-republish", "typecheck": "yarn tsc --build", "typecheck:clean": "yarn tsc --build --clean", "typecheck:watch": "yarn tsc --build --watch", @@ -44,4 +45,4 @@ "vitest": "^3.0.8" }, "packageManager": "yarn@4.0.2" -} +} \ No newline at end of file