forked from Qortal/q-blog
7 lines
195 B
Bash
Executable File
7 lines
195 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
branch="${1:-update}"
|
|
git commit --allow-empty -m "ci: poke runner ($(date -u +%FT%TZ))" || true
|
|
git push origin "$branch"
|
|
echo "Pushed. Check Actions tab."
|