From 18732733c8f10a15341c9aef2d0a68be6fc0493f Mon Sep 17 00:00:00 2001 From: Matthew Baggett Date: Tue, 21 May 2024 14:19:58 +0200 Subject: [PATCH] Add builder action --- build/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/action.yml b/build/action.yml index 1449c1a..c62afa8 100644 --- a/build/action.yml +++ b/build/action.yml @@ -52,7 +52,7 @@ runs: shell: bash run: | # If the inputs.maintainer is not set, use the repository owner - if [[ ! ${{ inputs.maintainer }} ]]; then + if [[ -z "${{ inputs.maintainer }}" ]]; then echo "maintainer=${{ github.repository_owner }} <${{ github.repository_owner }}@users.noreply.github.com>" >> $GITHUB_OUTPUT else echo "maintainer=${{ inputs.maintainer }}" >> $GITHUB_OUTPUT