Skip to content

Commit

Permalink
update slides
Browse files Browse the repository at this point in the history
  • Loading branch information
geritwagner committed Jan 27, 2024
1 parent f0bf350 commit 61e5147
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 13 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/make_slides.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,23 @@ on:
branches: [ main ]

jobs:
build:
make_slides:
runs-on: ubuntu-latest
steps:
- name: Setup git
run: |
git config --global user.name "Slide updates"
git config --global user.email "[email protected]"
git config --global url.https://github.com/.insteadOf git://github.com/
- name: checkout repo
uses: actions/checkout@main
- name: build application
run: make slides
- name: Commit changes
- name: clone marp-cli
run: docker clone marpteam/marp-cli
- name: make slides
run: make -B slides
- name: Commit and push changes
run: |
git add .
git diff --quiet && git diff --staged --quiet || git commit -m 'update slides'
git config --global user.name "Slide creator"
git config --global user.email "[email protected]"
git add output/*
if git diff --staged --quiet; then
echo "No changes to commit"
else
git commit -m "Update slides ($(date +'%Y-%m-%d-%H-%M'))"
git push origin main
fi
5 changes: 3 additions & 2 deletions 00-orga.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ Acquire a broad understanding of

- A **review protocol** applying this understanding
- [Criteria and resources](https://digital-work-lab.github.io/literature-review-seminar/docs/protocol.html) are available online
- Submission: January 26, presentation: February 1
- Submission: **TBA**

<!-- January 26, presentation: February 1 -->

<!--
Mich vorstellen:
Expand All @@ -116,7 +118,6 @@ Mich vorstellen:
## Your expectations for the lecture "Introduction to Digital Work"
Studiengänge?
Semester?
Wer plant den Master zu machen?
Expand Down
4 changes: 4 additions & 0 deletions docs/day_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ nav_order: 2

# Day 1: Goals and process

**Introduction**

- [Access slides](../output/00-orga.html){: target="_blank"}

## Goals

**Learning objectives**
Expand Down

0 comments on commit 61e5147

Please sign in to comment.