From 08ac03fab6c122fe403bf079a834951c0f534b18 Mon Sep 17 00:00:00 2001 From: David G Date: Sun, 26 Apr 2026 08:06:09 +0100 Subject: [PATCH] Update create-release.yml --- .github/workflows/create-release.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index f321878..09df39d 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -14,14 +14,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: '20.x' registry-url: 'https://registry.npmjs.org' - # Defaults to the user or organization that owns the workflow file - scope: '@dogesec' - - run: yarn - - run: yarn publish --verbose --access public + + - run: yarn install --frozen-lockfile + + - run: npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}