ci: fix docs build

This commit is contained in:
gechandesu 2025-03-29 19:34:21 +03:00 committed by GitHub
parent 15c5ca21d5
commit 950fd84ae6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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/