Update .forgejo/workflows/deploy.yaml
This commit is contained in:
parent
7ecab4ed4b
commit
a5a5347525
1 changed files with 15 additions and 14 deletions
|
@ -4,23 +4,24 @@ 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"
|
||||
# - 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"
|
||||
- uses: https://github.com/LuisEnMarroquin/setup-ssh-action@v2.0.5
|
||||
# - 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 .'
|
||||
- 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"
|
||||
- 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"
|
Loading…
Reference in a new issue