#!/bin/sh set -e # Setup Git git config --global user.name 'gitea-actions' git config --global user.email 'teabot@gitea.io' # Clone Repository git clone --depth 1 "https://${TOKEN}@gitea.thebrokenrail.com/minecraft-pi-reborn/archives.git" -b master cd archives # Copy cp ../out/* . # Commit git commit -m 'Update Toolchain' git push