Skip to content

Commit 1841490

Browse files
authored
Documentation v4 📝 - github.io page (#4156)
* Rector: CQ - UnusedForeachValueToArrayKeysRector (#1) * Rector: CQ - UnusedForeachValueToArrayKeysRector See Rector\CodeQuality\Rector\Foreach_\UnusedForeachValueToArrayKeysRector * fixes + phpstan See fix at rector: rectorphp/rector-src#6164 * Updated documentation * Updated documentation * Updated documentation * Updated documentation * Revert "Rector: CQ - UnusedForeachValueToArrayKeysRector (#1)" This reverts commit 3d7eaf6. * WIP - Updated documentation * Added #4208 * Added #3150 (reply in thread) * little update - modules - new config/events _ ... * Updated modules * typo * typo * added .htaccess
1 parent 44fb962 commit 1841490

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2322
-410
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/.github export-ignore
44
/dev export-ignore
55
/docs export-ignore
6+
/docs_includes export-ignore
67
/tests export-ignore
78

89
/.all-contributorsrc export-ignore

.github/workflows/docs.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: MkDocs
2+
3+
on:
4+
workflow_call:
5+
# Allow manually triggering the workflow.
6+
workflow_dispatch:
7+
8+
push:
9+
branches:
10+
- main
11+
- documentation
12+
paths:
13+
- 'docs/**.md'
14+
- 'docs/**.html'
15+
- 'docs/**.yml'
16+
- 'docs_includes/**.md'
17+
- 'mkdocs.yml'
18+
permissions:
19+
contents: write
20+
jobs:
21+
deploy:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-python@v4
26+
with:
27+
python-version: 3.x
28+
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
29+
30+
- uses: actions/cache@v3
31+
with:
32+
key: mkdocs-material-${{ env.cache_id }}
33+
path: .cache
34+
restore-keys: |
35+
mkdocs-material-
36+
- run: pip3 install mkdocs mkdocs-material mkdocs-minify-plugin mkdocs-redirects
37+
38+
- name: Publish docs
39+
run: mkdocs gh-deploy --force

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ phpunit.xml
9191
/shell/update-copyright.php
9292
/shell/translations.php
9393

94+
# generated by mkdocs serve
95+
/site
96+
9497
# DDEV
9598
.ddev/config.yaml
9699
.ddev/.sampleData

docs/.htaccess

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Order deny,allow
2+
Deny from all

docs/EVENTS.md

Lines changed: 0 additions & 378 deletions
This file was deleted.
11.7 KB
Loading
9.29 KB
Loading
17 KB
Loading
5.33 KB
Loading
30.9 KB
Loading

0 commit comments

Comments
 (0)