taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 6e7afdb2429eff55e30d90dea751d974984919aa
parent 23fb3c8dac974ea11fa0975618718dbb265240a7
Author: HernĂ¢ni Marques <hernani@vecirex.net>
Date:   Thu,  7 May 2026 13:51:43 +0200

Fix hooking for {www,stage}.taler-ops.ch; add README.md w/ note

Diffstat:
Mworker-sites/invalidate.sh | 14+++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/worker-sites/invalidate.sh b/worker-sites/invalidate.sh @@ -57,16 +57,28 @@ then rm -f $HOME/stamps/tutorials.taler.net-stamp fi +# Check {www.}taler-ops.ch and stage.taler-ops.ch -# Check taler-ops.ch Web page. cd $HOME/taler-ops-www git fetch + +# Check first {www.}taler-ops.ch web page; build from stable +git checkout stable -f if git status -sb | grep behind; then echo "invalidating taler-ops.ch" rm -f $HOME/stamps/taler-ops.ch-stamp fi +# Check secondly stage.taler-ops.ch web page; build from master +git checkout master -f +git fetch +if git status -sb | grep behind; +then + echo "invalidating stage.taler-ops.ch" + rm -f $HOME/stamps/stage.taler-ops.ch-stamp +fi + # Check taler-systems.com Web page. cd $HOME/taler-systems-www git fetch