Skip to content

fix(verilator): support wide decimal fallback #751

fix(verilator): support wide decimal fallback

fix(verilator): support wide decimal fallback #751

Workflow file for this run

name: ci
on:
push:
branches:
- master
permissions:
contents: write
jobs:
changes:
name: Changes Detection
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
docs_has_changes: ${{ steps.filter.outputs.docs_has_changes }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: .github/filters.yml
deploy:
runs-on: ubuntu-latest
needs: changes
if: ${{ needs.changes.outputs.docs_has_changes == 'true' }}
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: docs-website/package-lock.json
- name: Install dependencies
working-directory: ./docs-website
run: npm ci
- name: Build website
working-directory: ./docs-website
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs-website/build
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com