From c0ba8096baa9b50f8dcc88b6276cc4574ceec5fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20M=C3=BChl?= Date: Wed, 18 Feb 2026 18:23:51 +0100 Subject: [PATCH] fix(deploy-static-site): add nix profile bin to PATH after install --- deploy-static-site/action.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deploy-static-site/action.yaml b/deploy-static-site/action.yaml index 3459fc9..9a14ef2 100644 --- a/deploy-static-site/action.yaml +++ b/deploy-static-site/action.yaml @@ -49,7 +49,9 @@ runs: steps: - name: Install tools shell: bash - run: NIXPKGS_ALLOW_UNFREE=1 nix profile install --impure nixpkgs#nomad nixpkgs#awscli2 nixpkgs#skopeo + run: | + NIXPKGS_ALLOW_UNFREE=1 nix profile install --impure nixpkgs#nomad nixpkgs#awscli2 nixpkgs#skopeo + echo "$HOME/.nix-profile/bin" >> $GITHUB_PATH - name: Build site shell: bash