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: 3 additions & 0 deletions .batchfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Usage: <RepoUrl>;branch;TargetFolder

https://github.com/opencloud-eu/web;design-system-docs;static/design-system
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
/build
/static/likec4

# design-system docs
/static/design-system

# Generated files
.docusaurus
.cache-loader
Expand Down
6 changes: 5 additions & 1 deletion .woodpecker/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
when:
- event: push
branch: ${CI_REPO_DEFAULT_BRANCH}
- event: [ pull_request, manual, tag]
- event: [pull_request, manual, tag]

steps:
- name: fetch-design-system-docs
image: quay.io/thegeeklab/git-batch
commands:
- git batch -vv
Comment thread
JammingBen marked this conversation as resolved.
- name: build
image: owncloudci/nodejs:20
commands:
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"build-likec4": "likec4 build ./assets/likec4 --base /likec4 -o ./static/likec4"
"build-likec4": "likec4 build ./assets/likec4 --base /likec4 -o ./static/likec4",
"fetch-design-system-docs": "docker run --rm -w $(pwd) -v $(pwd):$(pwd) quay.io/thegeeklab/git-batch"
},
"dependencies": {
"@docusaurus/core": "3.7.0",
Expand Down