ci: minimal runner sanity check
Deploy momo-erp to production / deploy (push) Failing after 0s
Test runner alive / hello (push) Successful in 0s

This commit is contained in:
chpark
2026-04-25 21:17:39 +09:00
parent b46ec3c1a6
commit d29490e46f
+16
View File
@@ -0,0 +1,16 @@
name: Test runner alive
on:
push:
branches:
- main
jobs:
hello:
runs-on: ubuntu-latest
steps:
- name: hello
run: |
echo "✔ runner alive"
uname -a
echo "secrets visible? DEPLOY_HOST length=${#DEPLOY_HOST}"
env:
DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }}