From ad5c8f2c8d05896ddf3326b14c6d0d45f8b0ecf2 Mon Sep 17 00:00:00 2001 From: Universe Date: Sun, 17 Dec 2023 00:27:15 +0900 Subject: [PATCH] use yarn --- .github/workflows/realease-desktop-app.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/realease-desktop-app.yml b/.github/workflows/realease-desktop-app.yml index 7c3fb5554..1fd5478ac 100644 --- a/.github/workflows/realease-desktop-app.yml +++ b/.github/workflows/realease-desktop-app.yml @@ -25,11 +25,12 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20 + cache: "yarn" # This will automatically install and cache Yarn - name: Install dependencies - run: npm ci + run: yarn install --frozen-lockfile # (npm ci) - name: Publish app env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} - run: npm run publish + run: yarn run publish