File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -76,12 +76,13 @@ jobs:
76
76
run : |
77
77
nix-env -iA nixpkgs.nixFlakes
78
78
echo 'experimental-features = nix-command flakes' | sudo tee -a /etc/nix/nix.conf
79
- $HOME/.nix-profile/bin/ nix --version
79
+ nix --version
80
80
cat /etc/nix/nix.conf
81
+ echo "$HOME/.nix-profile/bin" >> $GITHUB_PATH
81
82
82
83
- name : Building import_scripts
83
84
run : |
84
- $HOME/.nix-profile/bin/ nix build ./#packages.x86_64-linux.import_scripts
85
+ nix build ./#packages.x86_64-linux.import_scripts
85
86
86
87
- name : Import ${{ matrix.channel }} channel
87
88
run : |
Original file line number Diff line number Diff line change @@ -32,14 +32,16 @@ jobs:
32
32
echo 'experimental-features = nix-command flakes' | sudo tee -a /etc/nix/nix.conf
33
33
nix --version
34
34
cat /etc/nix/nix.conf
35
+ echo "$HOME/.nix-profile/bin" >> $GITHUB_PATH
36
+
35
37
36
38
- name : Building import_scripts
37
39
run : |
38
- $HOME/.nix-profile/bin/ nix build ./#packages.x86_64-linux.import_scripts
40
+ nix build ./#packages.x86_64-linux.import_scripts
39
41
40
42
- name : Building search.nixos.org
41
43
run : |
42
- $HOME/.nix-profile/bin/ nix build ./#packages.x86_64-linux.frontend
44
+ nix build ./#packages.x86_64-linux.frontend
43
45
mkdir ./dist
44
46
cp -RL ./result/* ./dist/
45
47
You can’t perform that action at this time.
0 commit comments