1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: fix yamllint warnings/errors

This commit is contained in:
Delyan Angelov
2021-07-19 13:26:36 +03:00
parent b10be83c7e
commit dbba46b349
3 changed files with 43 additions and 38 deletions

View File

@@ -10,11 +10,12 @@ jobs:
build-module-docs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Build V
run: make
- name: Build module documentation
run: ./v doc -m -f html vlib/
- name: Deploy docs to vercel
if: ${{ github.event_name == 'push' }}
run: npx vercel --confirm --prod --name vmodules --token ${{ secrets.VERCEL_TOKEN }} vlib/_docs/ || true
- uses: actions/checkout@v2
- name: Build V
run: make
- name: Build module documentation
run: ./v doc -m -f html vlib/
- name: Deploy docs to vercel
if: ${{ github.event_name == 'push' }}
run: npx vercel --confirm --prod --name vmodules \
--token ${{ secrets.VERCEL_TOKEN }} vlib/_docs/ || true