From 1ab8ea1c67f0a7b7e32b905a2c9d83a6f783d69d Mon Sep 17 00:00:00 2001 From: GHOST Date: Tue, 1 Feb 2022 12:10:14 +0000 Subject: [PATCH] fix: action --- .github/workflows/release.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index db4bdf0..c27ef4b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,21 +8,21 @@ jobs: publish-npm: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout Repo + uses: actions/checkout@v2 - - name: Setup Node - uses: actions/setup-node@v1 + - name: Setup Node.js 12.x + uses: actions/setup-node@v2 with: - node-version: 16 - registry-url: https://registry.npmjs.org/ + node-version: 12.x - name: Setup PNPM uses: pnpm/action-setup@v2.0.1 with: version: 6.23.2 - - name: Install Dependancies - run: pnpm i + - name: Install Dependencies + run: pnpm install - name: Publish Package run: pnpm publish