From b00ae7e672858cbeb2326e72d1cb17592f9bb5ae Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Fri, 17 Jan 2025 11:49:06 -0600 Subject: [PATCH] add extraArgs to input --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2a72a47..dbc8337 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,11 +6,15 @@ on: hosts: description: "list of hosts to build" required: true - default: "othalan,algiz" type: string + default: "othalan,algiz" lockFile: description: "flake.lock file" type: string + extraArgs: + description: "postional args forwared to nix" + type: string + default: "--keep-going" workflow_call: inputs: @@ -54,4 +58,4 @@ jobs: --flake . -vv -- - --keep-going + ${{ inputs.extraArgs }}