mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:16:12 +02:00

[BUGFIX] Use ghcr docs render image (#904)

The new `runTests.sh` relies on the `ghcr.io` image. However
the image itself relies on a non-prefixed version of the
image. Thus, the image can't be pulled automatically,
because it needs to be tagged afterwards.

Fixes #903
This commit is contained in:
J. Peter M. Schuler 2023-08-02 10:46:30 +02:00 committed by GitHub
parent 00ba733b0e
commit 619d15ff10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -154,7 +154,12 @@
"ci:yaml:lint": "find . ! -path '*.Build/*' ! -path '*node_modules/*' -regextype egrep -regex '.*.ya?ml$' | xargs -r php ./.Build/bin/yaml-lint",
"coverage:create-directories": "mkdir -p .Build/logs .Build/coverage",
"docs:generate": [
"docker run --rm t3docs/render-documentation show-shell-commands > tempfile.sh; echo 'dockrun_t3rd makehtml' >> tempfile.sh; bash tempfile.sh; rm tempfile.sh"
"@docs:generate:pullimage",
"docker run --rm ghcr.io/t3docs/render-documentation show-shell-commands > tempfile.sh; echo 'dockrun_t3rd makehtml' >> tempfile.sh; bash tempfile.sh; rm tempfile.sh"
],
"docs:generate:pullimage": [
"docker pull ghcr.io/t3docs/render-documentation",
"docker tag ghcr.io/t3docs/render-documentation t3docs/render-documentation"
],
"fix:composer:normalize": "@composer normalize --no-check-lock",
"fix:php": [