This commit is contained in:
parent
2b9de0bd12
commit
141a9bf872
1 changed files with 19 additions and 26 deletions
|
@ -15,35 +15,28 @@ on:
|
||||||
- .forgejo/**/*
|
- .forgejo/**/*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# linter:
|
# linter:
|
||||||
# runs-on: nix
|
# runs-on: nix
|
||||||
# steps:
|
# steps:
|
||||||
# - uses: actions/checkout@v4
|
# - uses: actions/checkout@v4
|
||||||
# - run: nix fmt -- --check .
|
# - run: nix fmt -- --check .
|
||||||
#
|
#
|
||||||
# #if: github.repository == 'Skynet/nixos'
|
# #if: github.repository == 'Skynet/nixos'
|
||||||
# build:
|
# build:
|
||||||
# runs-on: nix
|
# runs-on: nix
|
||||||
# steps:
|
# steps:
|
||||||
# - uses: actions/checkout@v4
|
# - uses: actions/checkout@v4
|
||||||
# - run: nix develop
|
# - run: nix develop
|
||||||
# - run: colmena build -v --on @active-dns
|
# - run: colmena build -v --on @active-dns
|
||||||
# - run: colmena build -v --on @active-core
|
# - run: colmena build -v --on @active-core
|
||||||
# - run: colmena build -v --on @active
|
# - run: colmena build -v --on @active
|
||||||
# - run: colmena build -v --on @active-ext
|
# - run: colmena build -v --on @active-ext
|
||||||
# - run: colmena build -v --on @active-gitlab
|
# - run: colmena build -v --on @active-gitlab
|
||||||
|
|
||||||
deploy_dns:
|
deploy_dns:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
# needs: [ linter, build ]
|
# needs: [ linter, build ]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: |
|
- run: colmena apply -v --on @active-dns --show-trace
|
||||||
# whoami
|
|
||||||
# eval $(ssh-agent -s)
|
|
||||||
# echo "${{ secrets.DEPLOY_KEY }}" | tr -d '\r' | ssh-add -
|
|
||||||
# mkdir -p ~/.ssh
|
|
||||||
# chmod 700 ~/.ssh
|
|
||||||
# echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
|
||||||
colmena apply -v --on @active-dns --show-trace
|
|
||||||
shell: bash
|
shell: bash
|
Loading…
Reference in a new issue