Files
runner_test/.gitea/workflows/demo.yaml
Arne Weiss d2ff748aee
Some checks failed
Minimal Gitea Actions Demo / Minimal-Gitea-Actions (push) Failing after 1s
.
2024-05-26 21:41:10 +02:00

18 lines
432 B
YAML

name: Minimal Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Minimal-Gitea-Actions:
runs-on: nix
steps:
- name: Check Environment
run: |
echo "Running on $(uname -a)"
echo "Current user: $(whoami)"
echo "Home directory: $HOME"
echo "Current directory: $(pwd)"
echo "Directory contents:"
ls -la