-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: initial external docs site (#16)
* docs: initial external docs site * ci: change workflow titles * docs: add site/edit url * docs: playing around with formatting * docs: more playing around with naming * fix: merge_request.state must be a string for working with 'in' operator * docs: sync config file * docs: more tuning of docs * docs: split up script attributes and functions * docs: rework things a bit more * docs: generate attributes from source * docs: improve UX * docs: fix label/id for headlines * docs: minor tweaks * docs: expand docs and style it proper * docs: pretty README.md * docs: pretty README.md * docs: pretty README.md * docs: pretty README.md * docs: pretty README.md * ci: only ship docs on main brancH
- Loading branch information
Showing
35 changed files
with
1,389 additions
and
734 deletions.
There are no files selected for viewing
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,31 @@ | ||
name: Documentation | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
deploy: | ||
name: "Deploy" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: arduino/setup-task@v2 | ||
with: | ||
version: 3.x | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- name: setup | ||
run: task setup | ||
|
||
- name: deploy | ||
run: task docs:deploy |
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,17 +1,19 @@ | ||
.direnv | ||
.env | ||
.env.* | ||
.idea/ | ||
.scm-engine.yml | ||
.task/ | ||
3rd-party/ | ||
bin/ | ||
completions/ | ||
coverage.txt | ||
dist/ | ||
/schema/ignore | ||
manpages/ | ||
scm-engine | ||
scm-engine.exe | ||
*.gen.go | ||
!.env.example | ||
/.cache | ||
/.direnv | ||
/.env | ||
/.env.* | ||
/.idea/ | ||
/.scm-engine.docs.yml | ||
/.scm-engine.yml | ||
/.task/ | ||
/3rd-party/ | ||
/bin/ | ||
/completions/ | ||
/coverage.txt | ||
/dist/ | ||
/manpages/ | ||
/schema/ignore | ||
/scm-engine | ||
/scm-engine.exe | ||
/docs/gitlab/script-attributes.md |
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,3 @@ | ||
MD046: false | ||
MD013: false | ||
MD051: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM squidfunk/mkdocs-material | ||
|
||
# https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin | ||
RUN pip install mkdocs-awesome-pages-plugin | ||
RUN pip install mkdocs-git-revision-date-localized-plugin | ||
RUN pip install mkdocs-git-authors-plugin |
Oops, something went wrong.