trog.codes

Scripting mill backups

Post on 2025-03-19 21:54:30

Here is a cool script I wrote that runs on a schedule and syncs my workspace every day with a github repo.

It does so securely, without revealing any environment details.

#!/bin/bash

set -e

# arguments of the form X="$I" are parsed as parameters X of type string
token=$(curl -s -H "Authorization: Bearer $WM_TOKEN" \
  "$BASE_INTERNAL_URL/api/w/$WM_WORKSPACE/variables/get_value/github_resource" | jq -r .)
date=$(date +%Y-%m-%d)

npm i -g windmill-cli

git clone https://rconjoe:$token@github.com/rconjoe/mill.trog.codes.git
cd mill.trog.codes

git config user.name "rconjoe"
git config user.email "root@trog.codes"

wmill workspace add tonka tonka https://mill.trog.codes --token "$WM_TOKEN"

wmill sync pull --yes

if ! git diff --quiet --exit-code; then
  date=$(date "+%Y-%m-%d %H:%M:%S")

  git commit -am "sync $date"

  git push https://rconjoe:$token@github.com/rconjoe/mill.trog.codes.git master
  echo "Changes committed and pushed successfully."
else
  echo "No changes to commit."
fi

echo "Script finished."

It runs every day at noon, so if I wrote anything in my workspaces it is backed up without any work on my part.