Skip to content

Merge branch 'main' of https://github.com/primefaces/primevue-tailwind #40

Merge branch 'main' of https://github.com/primefaces/primevue-tailwind

Merge branch 'main' of https://github.com/primefaces/primevue-tailwind #40

name: Generate Preset DOC
on:
push:
branches: [main]
paths:
- 'assets/styles/presets/aura/**.css'
permissions:
contents: write
jobs:
build:
if: github.repository == 'primefaces/primevue-tailwind' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install node packages
run: npm install
- name: Generate api doc
run: npm run build:presetdoc
- name: Commit doc
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git commit -a -m "Update API doc"
git push