From 68581bc561728fe09f975c96ff9546b56b4f8106 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96zg=C3=BCr=20Adem=20I=C5=9EIKLI?= Date: Sat, 23 Dec 2023 16:15:38 +0100 Subject: [PATCH] Fixed --- .github/workflows/vitepress-deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/vitepress-deploy.yml b/.github/workflows/vitepress-deploy.yml index 7623516..8646ac6 100644 --- a/.github/workflows/vitepress-deploy.yml +++ b/.github/workflows/vitepress-deploy.yml @@ -1,4 +1,4 @@ -name: Build and Deploy +name: Docs on: push: branches: @@ -14,11 +14,11 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 20 - cache: yarn - - run: cd docs && yarn install --frozen-lockfile + cache: npm + - run: cd docs && npm install --frozen-lockfile - name: Build - run: yarn docs:build + run: npm docs:build - name: Deploy uses: peaceiris/actions-gh-pages@v3