nixos/.forgejo/workflows/deploy.yaml
Brendan Golden 141a9bf872
Some checks failed
Build_Deploy / deploy_dns (push) Failing after 36s
ci:: final, fixing
2024-08-07 19:06:58 +01:00

42 lines
No EOL
978 B
YAML

name: Build_Deploy
on:
workflow_run:
workflows: [ "Update_Flake" ]
types:
- completed
push:
paths:
- applications/**/*
- machines/**/*
- secrets/**/*
- flake.*
- config/**/*
- .forgejo/**/*
jobs:
# linter:
# runs-on: nix
# steps:
# - uses: actions/checkout@v4
# - run: nix fmt -- --check .
#
# #if: github.repository == 'Skynet/nixos'
# build:
# runs-on: nix
# steps:
# - uses: actions/checkout@v4
# - run: nix develop
# - run: colmena build -v --on @active-dns
# - run: colmena build -v --on @active-core
# - run: colmena build -v --on @active
# - run: colmena build -v --on @active-ext
# - run: colmena build -v --on @active-gitlab
deploy_dns:
runs-on: nix
# needs: [ linter, build ]
steps:
- uses: actions/checkout@v4
- run: colmena apply -v --on @active-dns --show-trace
shell: bash