aboutsummaryrefslogtreecommitdiffstats
path: root/deploy.sh
diff options
context:
space:
mode:
authorJan Tuomi <jan@jantuomi.fi>2026-05-02 14:07:30 +0300
committerJan Tuomi <jan@jantuomi.fi>2026-05-02 14:07:30 +0300
commit93e4ed0ef170d0d319d51d3e704d68ce833eb8da (patch)
tree30c3cbe09bbc74b77cd534ca1c8068a9f5e037f1 /deploy.sh
parent1260bab953b10dddfe2b2743d2059dfb11ad5391 (diff)
Remove deploy.shHEADmain
Diffstat (limited to 'deploy.sh')
-rwxr-xr-xdeploy.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/deploy.sh b/deploy.sh
deleted file mode 100755
index c67baee..0000000
--- a/deploy.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-# Use e.g. `direnv` to set the DIDDLE_ variables
-
-set -euxo pipefail
-
-IMAGE=${DIDDLE_OCI_REGISTRY}/diddle:latest
-
-# Build
-docker build --progress plain --platform linux/amd64 -t "$IMAGE" .
-docker push "$IMAGE"
-
-# Deploy
-ssh "${DIDDLE_SSH_SERVER}" "${DIDDLE_UPDATE_COMMAND}"