aboutsummaryrefslogtreecommitdiff
path: root/home/bin/drone-encsecrets
diff options
context:
space:
mode:
Diffstat (limited to 'home/bin/drone-encsecrets')
-rwxr-xr-xhome/bin/drone-encsecrets27
1 files changed, 0 insertions, 27 deletions
diff --git a/home/bin/drone-encsecrets b/home/bin/drone-encsecrets
deleted file mode 100755
index b341094..0000000
--- a/home/bin/drone-encsecrets
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-
-# Update drone-ci secrets
-
-# Get the repository of the current git project.
-# The repository name is the username/project tuple of the origin remote.
-REPO=${REPO:-$(git remote show origin -n | grep "Fetch URL:" | sed -e 's,.*:\(.*\),\1,' -e 's/\.git$//')}
-
-SECRETS_FILE="$HOME/.drone/secrets/$REPO/secrets.yml"
-
-echo "Generating secret for repository: $REPO"
-echo "Using secrets from: $SECRETS_FILE"
-
-if [ ! -f "$SECRETS_FILE" ]; then
- echo "Secrets file $SECRETS_FILE does not exist. Aborting.">&2
- exit 1
-fi
-
-drone \
- --server https://drone.jodersky.ch \
- --token $(pass infra/drone-token) \
- secure \
- --repo "$REPO" \
- -in "$SECRETS_FILE" \
- -out .drone.sec \
- --yaml .drone.yml \
- --checksum