From 50ddccd333bfc3799666be2d0927fb9445f6aec1 Mon Sep 17 00:00:00 2001 From: tnthornton <2375126+tnthornton@users.noreply.github.com> Date: Thu, 10 Oct 2024 16:00:09 -0700 Subject: [PATCH] Move to yarn instead of npm to fix ci --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0010367..c8cb3c3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,13 +15,13 @@ jobs: with: node-version: 18.x - - run: npm install + - run: yarn install # We don't have any tests yet. # - run: xvfb-run -a npm test - name: Publish if: success() - run: npm run deploy + run: yarn run deploy env: VSCE_PAT: ${{ secrets.VSCE_PAT }}