-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/tmc5160cs
- Loading branch information
Showing
527 changed files
with
154,155 additions
and
11,608 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* @DangerKlippers/dk-devs | ||
* @KalicoCrew/kalico-devs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
ko_fi: koconnor | ||
custom: https://www.klipper3d.org/Sponsors.html#klipper-developers | ||
ko_fi: kalicocrew | ||
custom: https://docs.kalico.gg/Sponsors.html#the-crew |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name: klipper3d deploy | ||
name: docs deployment | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
paths: | ||
- docs/** | ||
- .github/workflows/klipper3d-deploy.yaml | ||
- .github/workflows/cd-docs.yaml | ||
|
||
jobs: | ||
deploy: | ||
|
@@ -19,18 +19,22 @@ jobs: | |
with: | ||
python-version: "3.10" | ||
|
||
- uses: actions/cache@v3 | ||
- uses: actions/cache@v4 | ||
id: pip-cache | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('docs/_klipper3d/mkdocs-requirements.txt') }} | ||
path: ${{ env.pythonLocation }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('docs/_kalico/mkdocs-requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install dependencies | ||
run: pip install -r docs/_klipper3d/mkdocs-requirements.txt | ||
if: steps.pip-cache.outputs.cache-hit != 'true' | ||
run: pip install -r docs/_kalico/mkdocs-requirements.txt | ||
|
||
- name: Build MkDocs Pages | ||
run: docs/_klipper3d/build-translations.sh | ||
run: | | ||
cd docs/ | ||
mkdocs build -f _kalico/mkdocs.yml | ||
- name: Deploy | ||
uses: JamesIves/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Docs test | ||
on: | ||
pull_request: | ||
paths: | ||
- docs/** | ||
- .github/workflows/ci-docs_test.yaml | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
|
||
- uses: actions/cache@v4 | ||
id: pip-cache | ||
with: | ||
path: ${{ env.pythonLocation }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('docs/_kalico/mkdocs-requirements.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Install dependencies | ||
if: steps.pip-cache.outputs.cache-hit != 'true' | ||
run: pip install -r docs/_kalico/mkdocs-requirements.txt | ||
|
||
- name: Build MkDocs Pages | ||
run: | | ||
cd docs/ | ||
mkdocs build -f _kalico/mkdocs.yml --strict |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.