Files
homelab-compose/.gitea/workflows/update.yml
craisin 99e4eb6d51
Some checks failed
Update Compose File / build (push) Failing after 8s
apt jank
2025-11-25 12:36:01 -08:00

13 lines
336 B
YAML

name: Update Compose File
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: apt update && apt install sshpass -y
- name: Update Compose
run: "sshpass -p {{ secrets.SSH_PASSWORD }} ssh craisin@minicraisin \"cd config && git pull && docker compose up -d --remove-orphans\""