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

ci: rename all github actions workflow files, that are related to CI (run on commits/PRs), to have a _ci.yml postfix

This commit is contained in:
Delyan Angelov
2023-01-19 14:38:13 +02:00
parent c7a829e74f
commit 12f9e922bc
13 changed files with 0 additions and 0 deletions

20
.github/workflows/module_docs_ci.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: vlib modules CI
on:
pull_request:
push:
branches:
- master
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