-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c9eeaa
commit fbb55e6
Showing
3 changed files
with
40 additions
and
10 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,32 @@ | ||
name: Build site CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Build the site in the jekyll/builder container | ||
- uses: actions/checkout@v4 | ||
run: | | ||
docker run \ | ||
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ | ||
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future" | ||
- name: Push the site to the gh-pages branch | ||
if: ${{ github.event_name == 'push' }} | ||
run: | | ||
sudo chown $( whoami ):$( whoami ) ${{ github.workspace }}/_site | ||
cd ${{ github.workspace }}/_site | ||
git init -b gh-pages | ||
git config user.name ${{ github.actor }} | ||
git config user.email ${{ github.actor }}@users.noreply.github.com | ||
git remote add origin https://x-access-token:${{ github.token }}@github.com/${{ github.repository }}.git | ||
git add . | ||
git commit -m "Deploy site built from commit ${{ github.sha }}" | ||
git push -f -u origin gh-pages |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
email: [email protected] | ||
description: >- | ||
Der Lehrstuhl für Mechatronik zeichnet sich durch eine wegweisende Verknüpfung von physikalischem Verständnis, | ||
Der Chair of Scientific Computing in Mechatronics zeichnet sich durch eine wegweisende Verknüpfung von physikalischem Verständnis, | ||
mechatronischem Engineering und Scientific Machine Learning aus. Unsere Expertise liegt darin, komplexe Interaktionen | ||
zwischen mechanischen, elektronischen und weiteren Subsystemen zu verstehen, zu modellieren und zu optimieren. | ||
baseurl: "" | ||
|