Updating Jibo icon #163
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 | |
- name: Commit (without CI) | |
run: | | |
git config --local user.email "" | |
git config --local user.name "GitHub Action" | |
git add extensions/README.md | |
git commit -m "[skip ci] re-generate extension documentation" | |
- name: Push | |
run: git push | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 're-generate extension documentation\n\nskip-checks:true' | |
file_pattern: 'extensions/README.md' |