Skip to content

Commit 59047e5

Browse files
fix(release): restore executable bit on check-cachix-pin.sh and invoke via bash
PR #20 left check-cachix-pin.sh with mode 100644: commit 667ac07 set it executable (100755) but the follow-up 37772a5 flipped it back. The Release workflow runs the script directly, so the "Populate Nix Caches" job failed with Permission denied. Restore the executable bit, and invoke the script via `bash` so the job no longer depends on the mode bit being preserved. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent b467bc2 commit 59047e5

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

.github/scripts/check-cachix-pin.sh

100644100755
File mode changed.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
export PATH="$(nix build github:runtimeverification/kup --no-link --print-out-paths)/bin:$PATH"
7272
kup publish k-framework-binary .#komet-node --keep-days 180
7373
# Cachix has not been responding to 'cachix pin' requests made under the hood by kup. Verify the push and pin manually.
74-
.github/scripts/check-cachix-pin.sh
74+
bash .github/scripts/check-cachix-pin.sh
7575
7676
- name: 'On failure, delete drafted release'
7777
if: failure()

0 commit comments

Comments
 (0)