Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(workflows): Fix npmrc and changesets action tag

+4 -4
+3 -3
.github/workflows/prerelease.yml
··· 46 46 - name: Install Dependencies 47 47 run: pnpm install 48 48 49 - - name: Build 50 - run: pnpm build 49 + - name: TypeScript 50 + run: pnpm run check 51 51 52 52 - name: Publish 53 53 env: 54 54 NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 55 55 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 56 56 run: | 57 - echo "\n//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}\n" > $HOME/.npmrc 57 + npm config set "//registry.npmjs.org/:_authToken" "$NPM_TOKEN" 58 58 pnpm changeset version --no-git-tag --snapshot canary 59 59 pnpm changeset publish --no-git-tag --snapshot canary --tag canary
+1 -1
.github/workflows/release.yml
··· 45 45 46 46 - name: PR or Publish 47 47 id: changesets 48 - uses: changesets/action@595655c3eae7136ff5ba18200406898904362926 48 + uses: changesets/action@v1.4.1 49 49 with: 50 50 publish: pnpm changeset publish 51 51 env: