mirror of
https://github.com/DeterminateSystems/magic-nix-cache-action.git
synced 2024-12-23 13:32:03 +01:00
attic-server -> flakehub-cache-server
This commit is contained in:
parent
e27fd4f93e
commit
7a39db2ab3
2 changed files with 3 additions and 3 deletions
|
@ -39,8 +39,8 @@ inputs:
|
||||||
description: "Whether to upload build results to FlakeHub."
|
description: "Whether to upload build results to FlakeHub."
|
||||||
default: true
|
default: true
|
||||||
required: false
|
required: false
|
||||||
attic-server:
|
flakehub-cache-server:
|
||||||
description: "The Attic binary cache server."
|
description: "The FlakeHub binary cache server."
|
||||||
default: "https://attic-test.fly.dev"
|
default: "https://attic-test.fly.dev"
|
||||||
flakehub-api-server:
|
flakehub-api-server:
|
||||||
description: "The FlakeHub API server."
|
description: "The FlakeHub API server."
|
||||||
|
|
|
@ -140,7 +140,7 @@ async function setUpAutoCache() {
|
||||||
].concat(
|
].concat(
|
||||||
core.getInput('use-flakehub') === 'true' ? [
|
core.getInput('use-flakehub') === 'true' ? [
|
||||||
'--use-flakehub',
|
'--use-flakehub',
|
||||||
'--attic-server', core.getInput('attic-server'),
|
'--flakehub-cache-server', core.getInput('flakehub-cache-server'),
|
||||||
'--flakehub-api-server', core.getInput('flakehub-api-server'),
|
'--flakehub-api-server', core.getInput('flakehub-api-server'),
|
||||||
'--flakehub-api-server-netrc', path.join(process.env['RUNNER_TEMP'], 'determinate-nix-installer-netrc'),
|
'--flakehub-api-server-netrc', path.join(process.env['RUNNER_TEMP'], 'determinate-nix-installer-netrc'),
|
||||||
] : []).concat(
|
] : []).concat(
|
||||||
|
|
Loading…
Reference in a new issue