mirror of
https://codeberg.org/icewind/attic-action.git
synced 2026-06-03 17:44:07 +02:00
Make cachix install quiet
Since this mainly downloads dependencies, removing it, removes some noise.
This commit is contained in:
parent
943a92d48d
commit
36fc8c5254
2 changed files with 2 additions and 2 deletions
2
dist/main/index.js
vendored
2
dist/main/index.js
vendored
|
|
@ -986,7 +986,7 @@ function run() {
|
||||||
const authToken = core.getInput('authToken');
|
const authToken = core.getInput('authToken');
|
||||||
const cachixExecutable = "/nix/var/nix/profiles/per-user/runner/profile/bin/cachix";
|
const cachixExecutable = "/nix/var/nix/profiles/per-user/runner/profile/bin/cachix";
|
||||||
core.startGroup('Cachix: installing');
|
core.startGroup('Cachix: installing');
|
||||||
yield exec.exec('nix-env', ['-iA', 'cachix', '-f', 'https://cachix.org/api/v1/install']);
|
yield exec.exec('nix-env', ['--quiet', '-iA', 'cachix', '-f', 'https://cachix.org/api/v1/install']);
|
||||||
core.endGroup();
|
core.endGroup();
|
||||||
// for private caches
|
// for private caches
|
||||||
if (authToken !== "") {
|
if (authToken !== "") {
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ async function run() {
|
||||||
const cachixExecutable = "/nix/var/nix/profiles/per-user/runner/profile/bin/cachix";
|
const cachixExecutable = "/nix/var/nix/profiles/per-user/runner/profile/bin/cachix";
|
||||||
|
|
||||||
core.startGroup('Cachix: installing')
|
core.startGroup('Cachix: installing')
|
||||||
await exec.exec('nix-env', ['-iA', 'cachix', '-f', 'https://cachix.org/api/v1/install']);
|
await exec.exec('nix-env', ['--quiet', '-iA', 'cachix', '-f', 'https://cachix.org/api/v1/install']);
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
|
|
||||||
// for private caches
|
// for private caches
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue