Skip to content

Commit 65fb677

Browse files
Include from_pg_version in postgres-logs artifact name
The upgrade matrix runs multiple from-version pairs (16->18, 17->18) that share a target pg_version, so the postgres-logs artifact name still collided after the worker_id fix. Append -from<N> when the run-test action has a from_pg_version input. Signed-off-by: David Christensen <david.christensen@snowflake.com>
1 parent 51b5aaa commit 65fb677

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/actions/run-test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ runs:
140140
uses: actions/upload-artifact@v4
141141
if: always()
142142
with:
143-
name: postgres-logs-${{ inputs.pg_version }}-${{ inputs.test_make_target }}${{ inputs.worker_id != '' && format('-{0}', inputs.worker_id) || '' }}
143+
name: postgres-logs-${{ inputs.pg_version }}-${{ inputs.test_make_target }}${{ inputs.from_pg_version != '' && format('-from{0}', inputs.from_pg_version) || '' }}${{ inputs.worker_id != '' && format('-{0}', inputs.worker_id) || '' }}
144144
path: |
145145
/tmp/pg_lake_tests/logfile
146146
/tmp/pg_installcheck_tests/logfile

0 commit comments

Comments
 (0)