27 lines
No EOL
1.1 KiB
YAML
27 lines
No EOL
1.1 KiB
YAML
on:
|
|
workflow_dispatch:
|
|
jobs:
|
|
deploy:
|
|
runs_on: docker
|
|
steps:
|
|
# - name: "Cache Nix store"
|
|
# uses: actions/cache@v3.0.8
|
|
# id: nix-cache
|
|
# with:
|
|
# path: /tmp/nixcache
|
|
# key: "${{ runner.os }}-nix-cache"
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: master
|
|
- uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
|
# - name: "Import Nix store cache"
|
|
# if: "steps.nix-cache.outputs.cache-hit == 'true'"
|
|
# run: "nix-store --import < /tmp/nixcache"
|
|
- run: mkdir -q ~/.ssh; echo "$SSHKEY" > id_ed25519
|
|
name: "Setup ssh key"
|
|
with:
|
|
SSHKEY: ${{ secrets.DEPLOYKEY }}
|
|
- run: 'nix develop --command deploy --remote-build root@zeus .'
|
|
# - name: "Export Nix store cache"
|
|
# if: "steps.nix-cache.outputs.cache-hit != 'true'"
|
|
# run: "nix-store --export $(find /nix/store -maxdepth 1 -name '*-*') > /tmp/nixcache" |