Update .gitea/workflows/auto-trigger-mac.yml
All checks were successful
Greet on Commit / greet (push) Successful in 1s

This commit is contained in:
2025-05-17 10:57:23 +00:00
parent 2f1b730d69
commit 3a19a9b3ea

View File

@@ -0,0 +1,21 @@
name: Greet on Commit
on:
push:
jobs:
greet:
runs-on: macos
steps:
- name: Say Hello
run: |
for ((i = 0; i < 10; i++)); do
echo "Hello, World!"
done
shell: bash
- name: Print Env
run: |
ls;pwd;whoami;env
shell: bash