this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: add new info to deploy script, dont update flakes

dusk 82c7a120 aefaa183

+6 -4
+6 -4
deploy.nu
··· 5 5 path add /nix/var/nix/profiles/default/bin 6 6 7 7 def main [msg?: string] { 8 - nix flake update 9 - 10 8 try { 11 9 nix run ".#dns" -- push 10 + } catch { |err| 11 + secrets/deploy-webhook.nu $"=== error pushing dns ===\n\n($err | to text)" 1 12 12 } 13 13 14 14 try { ··· 20 20 } 21 21 git commit -m $"($commit_msg) [skip ci]" 22 22 git push 23 + } catch { |err| 24 + secrets/deploy-webhook.nu $"=== error pushing git commit ===\n\n($err | to text)" 1 23 25 } 24 26 25 27 let start = date now 26 - secrets/deploy-webhook.nu $"deploying wolumonde: started" 28 + secrets/deploy-webhook.nu $"=== deploying wolumonde: started ===\n(sys disks | to text)\n\n(sys mem | to text)" 27 29 28 30 let result = nix run ".#apps.nixinate.wolumonde" -L --show-trace | complete 29 31 let end = date now 30 32 31 33 let paste_url = http post --content-type multipart/form-data "https://0x0.st" {file: ($result | to text | into binary), secret: true} 32 - secrets/deploy-webhook.nu $"deployed wolumonde: finished, took ($end - $start)\n\nlog: ($paste_url)" $result.exit_code 34 + secrets/deploy-webhook.nu $"=== deployed wolumonde: finished ===\ntook ($end - $start)\n\nlog: ($paste_url)" $result.exit_code 33 35 }