From 65df4e05fa039b6e464d50e62423e4536580f318 Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Thu, 28 Dec 2023 02:54:51 -0500 Subject: [PATCH] Switch package release to using yarn --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4322c00..cb33434 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,10 @@ jobs: with: node-version: '20.x' registry-url: 'https://registry.npmjs.org' - - run: npm ci - - run: npm publish + # Defaults to the user or organization that owns the workflow file + scope: '@ctfdio' + - run: yarn + - run: yarn publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} +