this repo has no description
4
fork

Configure Feed

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

build: update build input

dusk 0f3b3e52 04fb3473

+10 -1
+10 -1
deploy.nu
··· 33 33 webhook $hooktitle $"=== deployed ($hostname): finished ===\n\ntook ($end - $start)\n\nlog: ($paste_url)" $result.exit_code 34 34 } 35 35 36 + def update-input [input: string] { 37 + let result = nix flake update $input | complete 38 + webhook $"/inputs/($input)" $"=== updated input ===\n\n($result | to text)" $result.exit_code 39 + } 40 + 36 41 def main [msg?: string] { 42 + webhook "deploy" "=== started deploying all ===" 43 + 44 + update-input "blog" 45 + 37 46 try { 38 47 nix run ".#dns" -- push 39 48 } catch { |err| 40 - webhook "dns" $"=== error pushing dns ===\n\n($err | to text)" 1 49 + webhook "dns" $"=== error pushing dns ===\n\n($err.msg | to text)" 1 41 50 } 42 51 43 52 try {