Files
infra/.gitea/workflows/deploy-cloud-pc.yml
T
Dmitry 86fb248d85
Deploy cloud-pc / deploy (push) Failing after 1s
Deploy mini-pc / deploy (push) Failing after 4s
NixOS switch mini-pc / switch (push) Failing after 10m19s
NixOS switch cloud-pc / switch (push) Has been cancelled
Add Gitea deploy and NixOS switch workflows
2026-05-29 17:17:27 +03:00

28 lines
632 B
YAML

name: Deploy cloud-pc
on:
workflow_dispatch:
inputs:
stack:
description: "Stack to deploy (leave empty to reconcile all)"
required: false
push:
paths:
- ".gitea/workflows/deploy-cloud-pc.yml"
- "cloud-pc/**"
- "scripts/deploy.sh"
schedule:
- cron: "0 4 * * *"
jobs:
deploy:
runs-on: cloud-pc
steps:
- name: Sync repo
run: |
git config --global --replace-all safe.directory /opt/services
git -C /opt/services pull --ff-only
- name: Deploy stacks
run: /opt/services/scripts/deploy.sh cloud-pc "${{ inputs.stack }}"