From ad30c573fc4268237c120265e8534517c0a7b468 Mon Sep 17 00:00:00 2001 From: seveibar Date: Mon, 18 Mar 2024 01:37:30 -0700 Subject: [PATCH] use npx for pver release --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 413c43b2..f0e3bc38 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,10 @@ jobs: - name: Checkout code uses: actions/checkout@v2 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - name: Setup bun uses: oven-sh/setup-bun@v1 with: @@ -25,6 +29,6 @@ jobs: run: bun run build - name: Run pver release - run: bunx pver release + run: npx pver release env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}