From b020fe023024e499504a633ced2733ddf61400ff Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Wed, 4 Sep 2024 14:17:20 -0500 Subject: [PATCH] use cligen syntax --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 09375bd..01ed7ba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ on: hosts: description: 'list of hosts to build' required: true - default: 'othalan algiz' + default: ',othalan,algiz' type: string lockFile: description: 'flake.lock file' @@ -16,7 +16,7 @@ on: inputs: hosts: description: 'list of hosts to build' - default: 'othalan algiz' + default: ',othalan,algiz' type: string # concurrency: @@ -60,7 +60,7 @@ jobs: nix run . \ -- \ build --minimal \ - --host "${{ inputs.hosts }}" \ + --host,="${{ inputs.hosts }}" \ --flake . \ --debug \ -- \