From 0f563d774868f3a556b8c26e102dc8f2aba30b4e Mon Sep 17 00:00:00 2001 From: Matt Jennings Date: Wed, 22 Nov 2023 23:36:41 -0600 Subject: [PATCH] ci --- .changeset/config.json | 2 +- .github/workflows/release.yml | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index 523e88e..d5dcbd8 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -4,7 +4,7 @@ "commit": false, "fixed": [], "linked": [], - "access": "restricted", + "access": "public", "baseBranch": "master", "updateInternalDependencies": "patch", "ignore": ["docs"] diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 654cb32..23a2c77 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,12 +20,16 @@ jobs: uses: actions/setup-node@v3 with: node-version: 18 + - uses: pnpm/action-setup@v2.1.0 + with: + version: 8.8.0 - - name: Install Dependencies - run: yarn + - run: pnpm install - name: Create Release Pull Request uses: changesets/action@v1 + with: + publish: npx changeset publish env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}