mirror of
https://github.com/nix-community/docker-nixpkgs.git
synced 2026-01-11 20:30:37 -05:00
7 lines
127 B
Bash
Executable File
7 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
|