From 43658a994b18202d9c91ff6a95bd896ec4470eab Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 4 Jan 2024 15:05:04 -0800 Subject: [PATCH] Use postgres for artifact --- .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 e38bf67c0..4d2a70aa0 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 }}" >> "$GITHUB_ENV" + echo "RESULTS_NAME=${{ inputs.integration_tests && 'integation_' || 'unit_' }}${{ inputs.artifact }}${{ use_postgres && '_postgres' }}" >> "$GITHUB_ENV" - name: Setup Postgres Environment Variables if: ${{ inputs.use_postgres }}