Bump @tabler/icons from 3.26.0 to 3.28.1 in the node group (#380) #331
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: Publish Site | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
env: | |
OUTPUT_DIR: site-docs/ | |
jobs: | |
publish-site: | |
name: Publish Site | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.12.0 # keep in sync with 'engines'@package.json | |
- name: Install Dependencies | |
run: npm install | |
- name: Build Site | |
run: npm run build | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Generate Schema | |
run: | | |
python3 -m pip install json-schema-for-humans | |
generate-schema-doc --config-file generate-schema.yaml static/schemas/component-descriptor-v2 schema-v2.html | |
- name: Copy Schema | |
run: | | |
cp schema-v2.html schema_doc.css schema_doc.min.js public/docs/overview/specification | |
- name: Publish as GitHub Pages | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./public |