From 5dfaf7719853d70163ec7a1d8d268eedf41ab3e5 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 4 Jan 2024 15:27:37 -0800 Subject: [PATCH] inputs... --- .github/actions/test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 4d2a70aa0..5202923b6 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -38,7 +38,7 @@ runs: - name: Setup Test Variables shell: bash run: | - echo "RESULTS_NAME=${{ inputs.integration_tests && 'integation_' || 'unit_' }}${{ inputs.artifact }}${{ use_postgres && '_postgres' }}" >> "$GITHUB_ENV" + echo "RESULTS_NAME=${{ inputs.integration_tests && 'integation_' || 'unit_' }}${{ inputs.artifact }}${{ inputs.use_postgres && '_postgres' }}" >> "$GITHUB_ENV" - name: Setup Postgres Environment Variables if: ${{ inputs.use_postgres }}