From 950fd84ae69109f5d470943fc94436ca903d8454 Mon Sep 17 00:00:00 2001 From: gechandesu <47027335+gechandesu@users.noreply.github.com> Date: Sat, 29 Mar 2025 19:34:21 +0300 Subject: [PATCH] ci: fix docs build --- .github/workflows/docs.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 0bd9b92..a94fdf1 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -13,10 +13,9 @@ jobs: - uses: actions/checkout@v4 - name: Build docs run: | - ls -alFh - wget https://github.com/vlang/v/releases/latest/download/v_linux.zip - unzip v_linux.zip - ./v/v doc -m . -f html -o doc/ + wget -q https://github.com/vlang/v/releases/latest/download/v_linux.zip -O /tmp/v_linux.zip + unzip -q /tmp/v_linux.zip -d /tmp + /tmp/v/v doc -m . -f html -o doc/ ln -s doc/licenseid.html doc/index.html ls -alFh doc/