Add .gitea/workflows/auto-trigger-mac

This commit is contained in:
2025-05-17 10:55:35 +00:00
parent efe0719f67
commit 2f1b730d69

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