ci: initial commit of the deploy pipeline
Signed-off-by: silver <silver@skynet.ie>
This commit is contained in:
parent
497689f7ab
commit
cf2a638266
1 changed files with 20 additions and 0 deletions
20
.forgejo/workflows/deploy.yaml
Normal file
20
.forgejo/workflows/deploy.yaml
Normal file
|
@ -0,0 +1,20 @@
|
|||
on: [push]
|
||||
paths:
|
||||
- applications/**/*
|
||||
- machines/**/*
|
||||
- secrets/**/*
|
||||
- flake.*
|
||||
- config/**/*
|
||||
|
||||
jobs:
|
||||
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
|
Loading…
Reference in a new issue