From f308b28eb4c18caaea44b55ab8a6515934c09dd3 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Thu, 7 Mar 2024 19:42:45 -0700 Subject: [PATCH] Use npm to install cli --- .gitea/workflows/publish.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index acce2e7..f5dbbf4 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -17,12 +17,12 @@ 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: "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"