[FEATURE] Restore "clear value" field wizard #226
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: Flux ViewHelper Documentation | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- development | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Setup PHP 8.2 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- name: Checkout flux project | |
uses: actions/checkout@v3 | |
with: | |
path: flux | |
fetch-depth: 1 | |
persist-credentials: false | |
- name: Checkout Fluid Documentation Generator | |
uses: actions/checkout@v3 | |
if: ${{ contains(github.event.head_commit.message, '[TASK] Update XSD schema') }} | |
with: | |
repository: 'TYPO3-Documentation/fluid-documentation-generator' | |
fetch-depth: 0 | |
path: generator | |
- name: Generate ViewHelper RST documentation | |
if: ${{ contains(github.event.head_commit.message, '[TASK] Update XSD schema') }} | |
working-directory: ./generator | |
run: | | |
echo "${{steps.set_changedfile.outputs.changedfile}}" | |
composer install --no-dev -n -o --no-progress | |
mkdir -p schemas/fluidtypo3/flux/development/ | |
cp -r ../flux/Resources/Private/Schemas/Flux.xsd schemas/fluidtypo3/flux/development/schema.xsd | |
./bin/generate-fluid-documentation | |
find public/fluidtypo3/flux/development -type f -name '*.xsd' -delete | |
find public/fluidtypo3/flux/development -type f -name '*.json' -delete | |
find public/fluidtypo3/flux/development -type f -name '*.html' -delete | |
cp -r public/fluidtypo3/flux/development/* ../flux/Documentation/ViewHelpers/ | |
- name: Commit and push | |
if: ${{ contains(github.event.head_commit.message, '[TASK] Update XSD schema') }} | |
working-directory: ./flux | |
continue-on-error: true | |
run: | | |
git config user.name "FluidTYPO3 Flux" | |
git config user.email "[email protected]" | |
git add ./Documentation/ViewHelpers/* | |
git commit -m '[TASK] Regenerate ViewHelper documentation' | |
git push https://${{ secrets.EXEMPT_PUSH_TOKEN }}@github.com/FluidTYPO3/flux HEAD:development |