Skip to content

Commit

Permalink
Fix upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pbulawa committed Aug 29, 2024
1 parent 6cef5e0 commit 6f244d7
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,13 @@ jobs:
- name: Upload Code Coverage Report
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
name: code-coverage-report_${{ matrix.dotnet }}_${{ matrix.cloud_env }}
path: Snowflake.Data.Tests\windows_${{ matrix.dotnet }}_${{ matrix.cloud_env }}_coverage.xml

- name: Upload Test Performance Report
uses: actions/upload-artifact@v4
with:
name: tests-performance
name: tests-performance_${{ matrix.dotnet }}_${{ matrix.cloud_env }}
path: Snowflake.Data.Tests\windows_${{ matrix.dotnet }}_${{ matrix.cloud_env }}_performance.csv
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
Expand Down Expand Up @@ -130,12 +131,12 @@ jobs:
- name: Upload Code Coverage Report
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
name: code-coverage-report_${{ matrix.dotnet }}_${{ matrix.cloud_env }}
path: Snowflake.Data.Tests/linux_${{ matrix.dotnet }}_${{ matrix.cloud_env }}_coverage.xml
- name: Upload Test Performance Report
uses: actions/upload-artifact@v4
with:
name: tests-performance
name: tests-performance_${{ matrix.dotnet }}_${{ matrix.cloud_env }}
path: Snowflake.Data.Tests/linux_${{ matrix.dotnet }}_${{ matrix.cloud_env }}_performance.csv
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
Expand Down Expand Up @@ -189,12 +190,12 @@ jobs:
- name: Upload Code Coverage Report
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
name: code-coverage-report_${{ matrix.dotnet }}_${{ matrix.cloud_env }}
path: Snowflake.Data.Tests/macos_${{ matrix.dotnet }}_${{ matrix.cloud_env }}_coverage.xml
- name: Upload Test Performance Report
uses: actions/upload-artifact@v4
with:
name: tests-performance
name: tests-performance_${{ matrix.dotnet }}_${{ matrix.cloud_env }}
path: Snowflake.Data.Tests/macos_${{ matrix.dotnet }}_${{ matrix.cloud_env }}_performance.csv
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit 6f244d7

Please sign in to comment.