Skip to content

Update is.ov.importexport.doc.yaml #1

Update is.ov.importexport.doc.yaml

Update is.ov.importexport.doc.yaml #1

Workflow file for this run

name: API build and deploy
on:
push:
paths:
- reference/**
branches:
- master
jobs:
api-doc-deploy:
name: build doc
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Generate new documentation
uses: icadsistemi/[email protected]
with:
generator: html2
openapi-file: reference/is.ov.importexport.doc.yaml
command-args: -o docs
- name: Commit new documentation
run: |
git config --global user.name 'ICAD Sistemi'
git config --global user.email '[email protected]'
git add docs/
git commit -am "update docs"
git push