Files
runner_test/.gitea/workflows/demo.yaml
Arne Weiss 6859861107
All checks were successful
Minimal Gitea Actions Demo / Minimal-Gitea-Actions (push) Successful in 0s
.
2024-05-26 21:33:17 +02:00

18 lines
435 B
YAML

name: Minimal Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Minimal-Gitea-Actions:
runs-on: native
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