diff --git a/.github/workflows/module_docs.yml b/.github/workflows/module_docs.yml new file mode 100644 index 0000000000..fac97e04d8 --- /dev/null +++ b/.github/workflows/module_docs.yml @@ -0,0 +1,18 @@ +name: vlib modules CI + +on: + push: + branches: + - master + +jobs: + build-module-docs: + runs-on: ubuntu-18.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 + run: npx vercel --confirm --prod --name vmodules --token ${{ secrets.VERCEL_TOKEN }} vlib/_docs/