Update .forgejo/workflows/deploy.yaml
Signed-off-by: silver <silver@skynet.ie>
This commit is contained in:
parent
cd82445da5
commit
8954be7704
1 changed files with 14 additions and 1 deletions
|
@ -14,6 +14,12 @@ on:
|
|||
- config/**/*
|
||||
|
||||
jobs:
|
||||
linter:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: nix fmt -- --check .
|
||||
|
||||
#if: github.repository == 'Skynet/nixos'
|
||||
build:
|
||||
runs-on: nix
|
||||
|
@ -24,4 +30,11 @@ jobs:
|
|||
- 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
|
||||
- run: colmena build -v --on @active-gitlab
|
||||
|
||||
deploy_dns:
|
||||
runs-on: nix
|
||||
needs: [linter, build]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: nix fmt -- --check .
|
Loading…
Reference in a new issue