Fluid ViewHelper Documentation #1134
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: Fluid ViewHelper Documentation | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 1 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
core: ['main', '12.4'] | |
fail-fast: false | |
env: | |
TARGET_PATH: ${{ secrets.API_TARGET_PATH }}/${{ matrix.core }} | |
steps: | |
- name: Setup PHP 8.2 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Create RST documentation for Core ${{ matrix.core }} | |
working-directory: ./Build/fluid-viewhelpers/${{ matrix.core }} | |
run: | | |
composer install --no-dev -n -o --no-progress | |
composer generate-documentation | |
cp -r fluidDocumentationOutput ../../../documentation | |
- name: "Checkout ViewHelper Docs: ${{ matrix.core }}" | |
uses: actions/checkout@v4 | |
with: | |
repository: 'TYPO3-Documentation/TYPO3CMS-Reference-ViewHelper' | |
path: viewhelpers | |
ref: ${{ matrix.core }} | |
token: ${{ secrets.GH_PUSH_TOKEN }} | |
- name: Update repository | |
working-directory: ./viewhelpers | |
# - fails if there are no changes | |
# - keep original Documentation/Index.rst | |
continue-on-error: true | |
run: | | |
cp -rf ../documentation/* Documentation/ | |
git checkout HEAD -- Documentation/Index.rst | |
git config user.name "TYPO3 Documentation Team" | |
git config user.email "documentation-automation@typo3.com" | |
git add . | |
git commit -m '[BOT][TASK] Automatic Update of ViewHelper reference' | |
git push |