Skip to content

change articles parameter type from array to string #4

change articles parameter type from array to string

change articles parameter type from array to string #4

Workflow file for this run

name: API build and deploy
on:
push:
branches:
- openapi-build
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/Selfnet-APP.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