This repository has no description
0

Configure Feed

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

deploy as app to reduce ci time

Jakob Ankarhem (Jun 8, 2026, 6:26 PM +0200) b9df93d0 add51eb5

+7 -2
+2 -2
.github/workflows/deploy.yml
··· 64 64 echo "::error::homelab not reachable over Tailscale"; exit 1 65 65 66 66 - name: Deploy blog to homelab 67 - # Use the deploy-rs pinned in flake.lock (via the devShell) so the 67 + # Use the deploy-rs pinned in flake.lock (via the deploy app) so the 68 68 # CLI matches the lib that built the activation profile. 69 - run: nix develop --command deploy .#homelab.blog 69 + run: nix run .#deploy -- .#homelab.blog
+5
flake.nix
··· 43 43 treefmt.enable = true; 44 44 }; 45 45 46 + apps.deploy = { 47 + type = "app"; 48 + program = "${inputs.deploy-rs.packages.${system}.default}/bin/deploy"; 49 + }; 50 + 46 51 packages.blog = pkgs.stdenvNoCC.mkDerivation { 47 52 pname = "ankarhem-blog-site"; 48 53 version = "0";