From c973d4138a29283ea2cc8a51694d2e7d9e0d353f Mon Sep 17 00:00:00 2001 From: Roland Zimmermann <5895436+zimmerrol@users.noreply.github.com> Date: Mon, 4 Mar 2024 12:04:04 +0100 Subject: [PATCH] Fix guide compilation (#722) * Replace yarn with npm --- .github/workflows/guide.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/guide.yml b/.github/workflows/guide.yml index d1d45366..a61d2a32 100644 --- a/.github/workflows/guide.yml +++ b/.github/workflows/guide.yml @@ -13,9 +13,9 @@ jobs: - name: Install vuepress run: | sudo apt update - sudo apt install yarn - sudo yarn global add vuepress - sudo yarn global add vue-template-compiler + sudo apt install npm + sudo npm install vuepress -g + sudo npm install vue-template-compiler - name: Build run: | sudo vuepress build