From f82a9b6922576a5d1f34bf7ed037e7abd0a41042 Mon Sep 17 00:00:00 2001 From: Zach Leatherman Date: Wed, 15 Jan 2025 08:39:20 -0600 Subject: [PATCH] Modify release workflow to use npm install --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d527272..b1c03b9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: with: node-version: "20" registry-url: 'https://registry.npmjs.org' - - run: npm ci + - run: npm install - run: npm test - if: ${{ github.event.release.tag_name != '' && env.NPM_PUBLISH_TAG != '' }} run: npm publish --provenance --access=public --tag=${{ env.NPM_PUBLISH_TAG }}