about summary refs log tree commit diff
path: root/.ci/push
diff options
context:
space:
mode:
Diffstat (limited to '.ci/push')
-rwxr-xr-x.ci/push14
1 files changed, 0 insertions, 14 deletions
diff --git a/.ci/push b/.ci/push
deleted file mode 100755
index 0a7ce7c3d315..000000000000
--- a/.ci/push
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env nix-shell
-#! nix-shell -i bash -p openssl git openssh
-set -euo pipefail
-
-# Note: This script is executed from git root
-
-export TMP_PLAIN=$(mktemp)
-function finish {
-    rm -rf $TMP_PLAIN
-}
-trap finish EXIT
-
-openssl aes-256-cbc -d -salt -pbkdf2 -in ./.ci/exwm-overlay-key.enc -k $SSH_KEY_PASSPHRASE -out $TMP_PLAIN
-ssh-agent bash -c "ssh-add $TMP_PLAIN && git push origin HEAD:master"