Skip to content

Commit

Permalink
lernOS Produktionskette Cloud eingefügt
Browse files Browse the repository at this point in the history
  • Loading branch information
simondueckert committed Jan 9, 2024
1 parent 0ad20e6 commit ce546a6
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 0 deletions.
Binary file removed .DS_Store
Binary file not shown.
91 changes: 91 additions & 0 deletions .github/workflows/lernos-produktionskette.yml
@@ -0,0 +1,91 @@
name: lernOS Produktionskette

on: push

jobs:
convert_via_pandoc:
runs-on: ubuntu-latest
steps:
# Repository auschecken, damit Workflow es nutzen kann
- uses: actions/checkout@v3

# Delete Old Versions
- run: rm -rf ./de/${{ github.event.repository.name }}-guide.*
- run: rm -rf ./docs/de/*

# Create Chapter List
- name: Create Chapter List
id: chapter_list
run: echo "chapters=$(printf '%s ' ./de/src/[0-9]*.md)" >> "$GITHUB_OUTPUT"

# Create Microsoft Word Version (docx)
- uses: docker://pandoc/core
with:
args: >-
./de/metadata.yaml
--standalone
--resource-path=./de/src
--number-sections
--toc
-V lang=de-de
--output=./de/${{ github.event.repository.name }}-guide.docx
./de/src/index.md ${{ steps.chapter_list.outputs.chapters }}
# Create HTML Version (html)
- uses: docker://pandoc/core
with:
args: >-
./de/metadata.yaml
--standalone
--resource-path=./de/src
--number-sections
--toc
-V lang=de-de
--output=./de/${{ github.event.repository.name }}-guide.html
./de/src/index.md ${{ steps.chapter_list.outputs.chapters }}
# Create eBook Version (epub)
- uses: docker://pandoc/core
with:
args: >-
./de/metadata.yaml
--standalone
--resource-path=./de/src
--number-sections
--toc
-V lang=de-de
--output=./de/${{ github.event.repository.name }}-guide.epub
./de/src/index.md ${{ steps.chapter_list.outputs.chapters }}
# Create PDF Version (pdf)
- uses: docker://pandoc/extra
with:
args: >-
./de/metadata.yaml
--standalone
--resource-path=./de/src
--number-sections
--toc
-V lang=de-de
--template /.pandoc/templates/eisvogel.latex
--output=./de/${{ github.event.repository.name }}-guide.pdf
./de/src/index.md ${{ steps.chapter_list.outputs.chapters }}
# Create Web Version (mkdocs)
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material
- run: mkdocs build -f ./de/mkdocs.yml

# Geänderte Datein zurück ins Repository committen
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Erzeugt von automatischer lernOS Produktionskette
7 changes: 7 additions & 0 deletions .gitignore
@@ -0,0 +1,7 @@
.DS_Store
de/src/.obsidian/workspace.json
de/src/.obsidian/hotkeys.json
de/src/.obsidian/core-plugins.json
de/src/.obsidian/core-plugins-migration.json
de/src/.obsidian/appearance.json
de/src/.obsidian/app.json
Binary file removed de/.DS_Store
Binary file not shown.

0 comments on commit ce546a6

Please sign in to comment.