ci: testing out deploy, go back to old
Some checks failed
Build_Deploy / deploy_dns (push) Failing after 50s
Some checks failed
Build_Deploy / deploy_dns (push) Failing after 50s
This commit is contained in:
parent
729b8742a0
commit
9d4a6605d3
1 changed files with 23 additions and 21 deletions
|
@ -14,31 +14,33 @@ on:
|
||||||
- config/**/*
|
- config/**/*
|
||||||
|
|
||||||
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
|
||||||
# setup deploy key
|
# setup deploy key
|
||||||
- uses: https://github.com/webfactory/ssh-agent@v0.9.0
|
- run: |
|
||||||
with:
|
eval $(ssh-agent -s)
|
||||||
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
|
echo "${{ secrets.DEPLOY_KEY }}" | tr -d '\r' | ssh-add - > /dev/null
|
||||||
|
mkdir -p ~/.ssh
|
||||||
|
chmod 700 ~/.ssh
|
||||||
- run: colmena apply -v --on @active-dns
|
- run: colmena apply -v --on @active-dns
|
Loading…
Reference in a new issue