www-from-model/.forgejo/actions/deposit-changes/action.yml
Michael Hanke 9d7474143b
All checks were successful
Deploy on webserver / Build site and deploy on success (push) Successful in 36s
rf: move common prep steps into a composite action
2026-02-23 10:54:47 +01:00

9 lines
273 B
YAML

runs:
using: "composite"
steps:
- name: Deposit changes
run: |
git add content
git diff --quiet --cached \
&& echo "Already up-to-date" \
|| ( git commit -m "chore: auto-generate content from metadata" && git push origin )