diff options
| author | Jérôme Benoit <[email protected]> | 2026-02-09 17:13:25 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-02-09 10:13:25 -0600 |
| commit | 24fd8c166d2dfc6505a61541dae31d206b200680 (patch) | |
| tree | 2087b59bb40e5027102f8f508d53559ae136c472 | |
| parent | a7c5d5ac4c5082737f2fc2214805c073e971fb91 (diff) | |
| download | opencode-24fd8c166d2dfc6505a61541dae31d206b200680.tar.gz opencode-24fd8c166d2dfc6505a61541dae31d206b200680.zip | |
fix(nix): watch scripts in nix-hashes workflow (#12818)
| -rw-r--r-- | .github/workflows/nix-hashes.yml | 3 | ||||
| -rw-r--r-- | nix/node_modules.nix | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/nix-hashes.yml b/.github/workflows/nix-hashes.yml index 5446f9212..894dbf47b 100644 --- a/.github/workflows/nix-hashes.yml +++ b/.github/workflows/nix-hashes.yml @@ -12,6 +12,9 @@ on: - "package.json" - "packages/*/package.json" - "flake.lock" + - "nix/node_modules.nix" + - "nix/scripts/**" + - "patches/**" - ".github/workflows/nix-hashes.yml" jobs: diff --git a/nix/node_modules.nix b/nix/node_modules.nix index 836ef02a5..73cc6d442 100644 --- a/nix/node_modules.nix +++ b/nix/node_modules.nix @@ -30,7 +30,6 @@ stdenvNoCC.mkDerivation { ../bun.lock ../package.json ../patches - ../install ] ); }; |
