Skip to content

Commit

Permalink
Fix upload name on windows
Browse files Browse the repository at this point in the history
Upload artifact name was using a matrix field that did not exist,
causing a duplicate upload artifact name.
  • Loading branch information
mkindahl committed Feb 1, 2024
1 parent 2650447 commit 3296084
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/windows-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ jobs:
if: always() && steps.collectlogs.outputs.regression_diff == 'true'
uses: actions/upload-artifact@v4
with:
name: Regression diff ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
name: Regression ${{ matrix.pg }} diff ${{ matrix.os }} ${{ matrix.build_type }} Build
path: |
regression.log
installcheck.log
Expand All @@ -236,7 +236,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: PostgreSQL log ${{ matrix.os }} ${{ matrix.name }} ${{ matrix.pg }}
name: PostgreSQL ${{ matrix.pg }} log ${{ matrix.os }} ${{ matrix.build_type }} Build
path: postgres.log

- name: Upload test results to the database
Expand Down

0 comments on commit 3296084

Please sign in to comment.