diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 49822f4..c8b8205 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,13 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + persist-credentials: false - uses: actions/setup-node@v3 with: node-version: "18.x" - uses: pnpm/action-setup@v2 - - run: pnpm install - env: - HUSKY: 0 + - run: pnpm ci-install - run: pnpm build - run: pnpm test - run: npx semantic-release diff --git a/package.json b/package.json index ea9c612..ecc0042 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "trpc-koa-adapter", - "version": "1.0.5", + "version": "1.1.0", "author": "Blair Currey", "description": "Koa adapter for tRPC", "repository": { @@ -10,6 +10,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { + "ci-install": "HUSKY=0 pnpm install", "build": "rm -rf ./dist && tsc", "test": "jest", "lint": "eslint --fix \"src/**/*.{js,ts}\"",