Update deploy.yaml
All checks were successful
Deploy Monorepo to Opt / deploy (push) Successful in 1m4s

This commit is contained in:
mrzta
2026-02-12 23:44:24 +00:00
parent e9b26c7d9a
commit 42e721c942

View File

@@ -10,6 +10,15 @@ jobs:
with: with:
fetch-depth: 1 fetch-depth: 1
- name: Install dependencies
run: |
# If using Alpine-based runner (standard)
if command -v apk >/dev/null; then
apk add --no-cache rsync
# If using Ubuntu/Debian-based runner
elif command -v apt-get >/dev/null; then
apt-get update && apt-get install -y rsync
fi
- name: Sync and Launch Nextcloud - name: Sync and Launch Nextcloud
run: | run: |
mkdir -p /opt/docker/nextcloud mkdir -p /opt/docker/nextcloud