Skip to content
Merged
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
3 changes: 0 additions & 3 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ jobs:
- name: install packages
run: sudo apt-get install -y libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev

- name: reconfigure private repository access
run: ACCESS_TOKEN=${{ secrets.ACCESS_TOKEN }} task use:insider-https-token

- name: check
run: task check

Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ jobs:
- name: install packages
run: sudo apt-get install -y libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev

- name: reconfigure private repository access
run: ACCESS_TOKEN=${{ secrets.ACCESS_TOKEN }} task use:insider-https-token

- name: test
run: task test:unit

Expand Down
2 changes: 0 additions & 2 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ tasks:
- name: setup
before: |
brew install go-task/tap/go-task
init: |
task use:insider-https-token
command: |
task serve
github:
Expand Down
23 changes: 0 additions & 23 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ dotenv: ['.env']
vars:
PUBLIC_BRANCH: published
CURRENT_VERSION: 26.2
MATERIAL_TAG: 9.6.14
MATERIAL_INSIDER_TAG: 9.6.14-insiders-4.53.16
# the markdown linter command, used by format:fix:path and check:rumdl
RUMDL_CHECK: poetry run rumdl --config .markdownlint.jsonc check
# the default lint targets: the docs tree plus the top-level markdown files
Expand Down Expand Up @@ -99,27 +97,6 @@ tasks:
cmds:
- poetry run mkdocs serve

use:public:
desc: switch to public package (non insider)
cmds:
- poetry remove mkdocs-material || exit 0
- poetry add mkdocs-material=={{.MATERIAL_TAG}}
- poetry update

use:insider-ssh:
desc: switch to insider package from github:eccenca via ssh (default)
cmds:
- poetry remove mkdocs-material || exit 0
- poetry add git+ssh://git@github.com:eccenca/mkdocs-material-insiders.git#{{.MATERIAL_INSIDER_TAG}}
- poetry update

use:insider-https-token:
desc: switch to insider package from github:eccenca via ACCESS_TOKEN variable (build plan)
cmds:
- poetry remove mkdocs-material || exit 0
- poetry add git+https://$ACCESS_TOKEN@github.com/eccenca/mkdocs-material-insiders.git#{{.MATERIAL_INSIDER_TAG}}
- poetry update

update:icons:
desc: update the used eccenca icons from carbon
cmds:
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ extra:
Validation: validation
Filesystem: material-file-tree
Volume: fontawesome-solid-hard-drive
"Load Balancer": simple-awselasticloadbalancing
"Load Balancer": load-balancer
Variables: variables
JDBC: jdbc
Package: package
Expand Down Expand Up @@ -187,7 +187,7 @@ theme:
keycloak: material/openid
validation: octicons/verified-16
material-file-tree: material/file-tree
simple-awselasticloadbalancing: simple/awselasticloadbalancing
load-balancer: material/router-network
fontawesome-solid-hard-drive: fontawesome/solid/hard-drive
variables: material/variable-box
jdbc: material/database
Expand Down
47 changes: 21 additions & 26 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ mkdocs-macros-plugin = "^1.3.7"
mkdocs-autolinks-plugin = "^0.7.1"
mkdocs-redirects = "^1.2.2"
mkdocs-swagger-ui-tag = "^0.7.1"
# if you change this - change also the version ID in Taskfile.yml
mkdocs-material = {git = "git@github.com:eccenca/mkdocs-material-insiders.git", rev = "9.6.14-insiders-4.53.16"}
mkdocs-material = "9.7.7"
cmem-cmempy = "^25.3.0"
pydantic = "^2.11.7"
jinja2 = "^3.1.6"
Expand Down
Loading