Deploy CI hosts after all other deployments #83

Merged
fabianhauser merged 1 commit from auto-deploy-ci into main 2025-06-29 20:03:45 +02:00

View file

@ -45,3 +45,17 @@ jobs:
lfs: false lfs: false
- name: "Deploy profile" - name: "Deploy profile"
run: "auto-deploy ${{ matrix.profile }}" run: "auto-deploy ${{ matrix.profile }}"
deploy-ci:
needs: deploy
if: success() && github.ref == 'refs/heads/main'
runs-on: nix
env:
SSH_DEPLOY_KEY: "${{ secrets.SSH_DEPLOY_KEY }}"
steps:
- name: Initialize CI
uses: https://git.qo.is/qo.is/actions-nix-init@main
with:
token: ${{ secrets.CI_TOKEN }}
lfs: false
- name: "Deploy profile"
run: "auto-deploy system-ci"