From de254d60a8e0e5cc92485702ae5c5b005a8133ed Mon Sep 17 00:00:00 2001 From: David Boreham Date: Thu, 7 Mar 2024 19:37:27 -0700 Subject: [PATCH] Use npm not yarn --- .github/workflows/publish-to-registry.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-to-registry.yml b/.github/workflows/publish-to-registry.yml index 4de5d5a..0362efb 100644 --- a/.github/workflows/publish-to-registry.yml +++ b/.github/workflows/publish-to-registry.yml @@ -20,14 +20,14 @@ jobs: uses: actions/setup-node@v3 with: node-version: 18 - - name: "Install Yarn" - run: npm install -g yarn + - name: "Enable Yarn" + run: corepack enable - name: "check yarn on path" run: which yarn && yarn --version - name: "Install registry CLI" run: | npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/ - yarn global add @cerc-io/laconic-registry-cli + npm install -g @cerc-io/laconic-registry-cli - name: "Install jq" run: apt -y update && apt -y install jq - name: "Publish Application Record"