From 5351b421cfd079b024d306db738f511fa9b48bba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Cruz?= Date: Mon, 20 Nov 2023 17:59:46 +0000 Subject: [PATCH] Fix release workflow --- .github/workflows/release.yaml | 2 +- package.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8de66ce..a088b28 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -55,4 +55,4 @@ jobs: GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }} run: | echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc - yarn run release --increment ${{ github.event.inputs.VERSION_BUMP }} -V + npm run release -- --increment ${{ github.event.inputs.VERSION_BUMP }} -V diff --git a/package.json b/package.json index 2b2ec13..9fef5b8 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,9 @@ "type": "git", "url": "https://github.com/uphold/debugnyan.git" }, + "publishConfig": { + "access": "public" + }, "scripts": { "lint": "uphold-scripts lint .", "release": "release-it",