https://github.com/mdecker-mobilecomputing/githubactionsdemo
Repo contain demo for GitHub Actions Workflow
https://github.com/mdecker-mobilecomputing/githubactionsdemo
github-actions
Last synced: 7 days ago
JSON representation
Repo contain demo for GitHub Actions Workflow
- Host: GitHub
- URL: https://github.com/mdecker-mobilecomputing/githubactionsdemo
- Owner: MDecker-MobileComputing
- Created: 2024-02-23T10:06:39.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-03-20T15:35:14.000Z (over 1 year ago)
- Last Synced: 2025-11-14T19:24:53.063Z (7 months ago)
- Topics: github-actions
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demo für GitHub Actions #
Diese Repo enthält neben dieser README-Datei nur eine Workflow-Datei für *GitHub Actions*.
Die Worfklow-Datei liegt im Unterordner [.github/workflows/](.github/workflows/) dieses Repos.
Die Workflow-Datei erzeugt eine einfache Textdatei mit Informationen zum aktuellen Datum und stellt diese Textdatei zum Download bereit.
Hierzu wird folgende Linux-Befehl ausgeführt:
```
date '+%e.%m.%Y: %A, %j. Tag im Jahr, liegt in Kalenderwoche %V.' > datum.txt
```
Beispielausgabe:
```
23.02.2024: Friday, 054. Tag im Jahr, liegt in Kalenderwoche 08.
```