This commit is contained in:
Michał Zieliński
2025-09-13 18:21:57 +02:00
parent ab368ae706
commit 256d1a59c6

View File

@@ -1,9 +1,14 @@
name: Hello name: _debug-mount
on: on: { workflow_dispatch: {} }
workflow_dispatch:
jobs: jobs:
test: check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: echo "Hello from stack-runner-01!" - run: |
set -e
echo "== grep mount =="
mount | grep -E 'runner-cache|ci-keys' || true
echo "== ls =="
ls -la /runner-cache || true
echo "MARKER $(date -Iseconds)" | tee /runner-cache/__ok.txt
echo "OK"