File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 79
79
- name : Install Nix
80
80
uses : cachix/install-nix-action@v31
81
81
with :
82
- nix_path : nixpkgs=channel:nixpkgs-unstable
83
82
extra_nix_config : |
84
83
accept-flake-config = true
85
84
@@ -124,7 +123,7 @@ jobs:
124
123
head : ${{ github.event.pull_request.head.sha }}
125
124
run : |
126
125
out=$(mktemp)
127
- ./flake/dev/ diff-plugins.py --compact "$base" "$head" > "$out"
126
+ nix run .# diff-plugins --compact "$base" "$head" > "$out"
128
127
{
129
128
echo -n 'json='
130
129
jq -c . < "$out"
@@ -138,7 +137,7 @@ jobs:
138
137
head : ${{ github.event.pull_request.merge_commit_sha }}
139
138
run : |
140
139
out=$(mktemp)
141
- ./flake/dev/ diff-plugins.py --compact "$base" "$head" > "$out"
140
+ nix run .# diff-plugins --compact "$base" "$head" > "$out"
142
141
{
143
142
echo -n 'json='
144
143
jq -c . < "$out"
You can’t perform that action at this time.
0 commit comments