Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/cgl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,9 @@ jobs:
# Migration
- name: Run Rector migration
run: composer migration:rector -- --dry-run

# Documentation
- name: Check documentation build
run: |
mkdir -p .Build/docs
composer docs:build -- --no-progress --fail-on-log
17 changes: 0 additions & 17 deletions Documentation/Settings.cfg

This file was deleted.

7 changes: 0 additions & 7 deletions Documentation/genindex.rst

This file was deleted.

16 changes: 16 additions & 0 deletions Documentation/guides.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<guides xmlns="https://www.phpdoc.org/guides" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://www.phpdoc.org/guides ../vendor/phpdocumentor/guides-cli/resources/schema/guides.xsd"
links-are-relative="true"
>
<extension class="\T3Docs\Typo3DocsTheme\DependencyInjection\Typo3DocsThemeExtension"
project-home="https://extensions.typo3.org/extension/handlebars"
project-contact="https://typo3.slack.com/archives/C0281DBRFCZ"
project-repository="https://github.com/CPS-IT/handlebars"
project-issues="https://github.com/CPS-IT/handlebars/issues" edit-on-github-branch="main"
edit-on-github="CPS-IT/handlebars" typo3-core-preferred="stable"
/>
<project title="Handlebars" release="0.7.26" copyright="since 2020 by coding. powerful. systems. CPS GmbH"/>
<inventory id="t3coreapi" url="https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/"/>
<inventory id="t3tsref" url="https://docs.typo3.org/m/typo3/reference-typoscript/main/en-us/"/>
</guides>
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@
"@docs:build",
"@docs:open"
],
"docs:build": "docker-compose run --rm docs",
"docs:build": "docker compose run --rm docs",
"docs:cleanup": "rm -rf .Build/docs",
"docs:open": "open .Build/docs/Result/project/0.0.0/Index.html",
"docs:open": "open .Build/docs/Index.html",
"fix": [
"@fix:composer",
"@fix:editorconfig",
Expand Down
11 changes: 5 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
version: '3.6'

services:
docs:
image: ghcr.io/t3docs/render-documentation:develop
command: makehtml
image: ghcr.io/typo3-documentation/render-guides
entrypoint: ['/opt/guides/entrypoint.sh', '--config', 'Documentation', '--output', '/result']
pull_policy: always
volumes:
- .:/PROJECT:ro
- .Build/docs:/RESULT
- .:/project:ro
- .Build/docs:/result
5 changes: 1 addition & 4 deletions version-bumper.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
presets:
- typo3-commit-guidelines
- name: typo3-extension
options:
# @todo Migrate to PHP-based documentation rendering
documentation: legacy
- typo3-extension

releaseOptions:
commitMessage: '[RELEASE] Release of EXT:handlebars {%version%}'
Loading