6 lines
127 B
Bash
Executable file
6 lines
127 B
Bash
Executable file
#!/bin/sh -eu
|
|
if [ "$CI_COMMIT_REF_NAME" = master ]; then
|
|
exec ./push-all
|
|
else
|
|
echo "=== not pushing on non-master ==="
|
|
fi
|