From aa8bcb96cd435def2bdb77c9de6bbacd485344f5 Mon Sep 17 00:00:00 2001 From: Richard Wossal Date: Wed, 3 Jan 2024 17:04:38 +0100 Subject: [PATCH] Chore: set RUNWAY_NONINTERACTIVE=true --- action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index aa1c330..34e1955 100644 --- a/action.yml +++ b/action.yml @@ -52,9 +52,10 @@ runs: shell: bash - run: runway -v -q shell: bash - - run: runway -l ${{ inputs.log-level }} -y -q login -u "${{ inputs.username }}" -p "${{ inputs.password }}" + - run: echo "RUNWAY_NONINTERACTIVE=true" >> $GITHUB_ENV + - run: runway -l ${{ inputs.log-level }} -q login -u "${{ inputs.username }}" -p "${{ inputs.password }}" shell: bash - - run: runway -l ${{ inputs.log-level }} -q -y key create ${{ inputs.public-key }} + - run: runway -l ${{ inputs.log-level }} -q key create ${{ inputs.public-key }} if: ${{ inputs.add-key == 'true' }} shell: bash - run: