Updated code to always try to load model (and indicate it). Change mo… #202
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate Extension Documentation | |
on: [push] | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.17.1] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Initialize | |
run: npm run init | |
- name: Generate | |
run: npm run document:extensions | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 're-generate extension documentation\n\nskip-checks:true' | |
file_pattern: 'extensions/README.md' |