mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 06:16:13 +01: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:
parent
00ba733b0e
commit
619d15ff10
1 changed files with 6 additions and 1 deletions
|
@ -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",
|
"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",
|
"coverage:create-directories": "mkdir -p .Build/logs .Build/coverage",
|
||||||
"docs:generate": [
|
"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:composer:normalize": "@composer normalize --no-check-lock",
|
||||||
"fix:php": [
|
"fix:php": [
|
||||||
|
|
Loading…
Reference in a new issue