From bcca32baaefc7cdd4bff5e84b4cda4b390ed8637 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20M=C3=BChl?= Date: Thu, 19 Feb 2026 00:24:36 +0100 Subject: [PATCH] fix(deploy-static-site): remove nix profile install, tools provided by runner image --- deploy-static-site/action.yaml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/deploy-static-site/action.yaml b/deploy-static-site/action.yaml index 4409da8..6065ae7 100644 --- a/deploy-static-site/action.yaml +++ b/deploy-static-site/action.yaml @@ -47,24 +47,6 @@ inputs: runs: using: composite steps: - - name: Install tools - shell: bash - run: | - NIXPKGS_ALLOW_UNFREE=1 nix profile install --impure nixpkgs#nomad nixpkgs#awscli2 nixpkgs#skopeo - echo "$HOME/.nix-profile/bin" >> $GITHUB_PATH - - - name: Cache installed tools - if: env.NIX_SIGNING_KEY != '' - shell: bash - run: | - echo "${NIX_SIGNING_KEY}" > /tmp/nix-key - nix store sign -k /tmp/nix-key --recursive "$HOME/.nix-profile" - rm /tmp/nix-key - nix copy --to "file:///tmp/nix-tools-cache" "$HOME/.nix-profile" - aws s3 sync /tmp/nix-tools-cache \ - "s3://${{ inputs.s3-bucket }}" \ - --endpoint-url "${{ inputs.s3-endpoint }}" - - name: Build site shell: bash run: nix build ".#${{ inputs.flake-output }}" --out-link result-site