Skip to content

Commit

Permalink
== 'true'
Browse files Browse the repository at this point in the history
  • Loading branch information
DanHarltey committed Mar 3, 2024
1 parent a30f527 commit abebaba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,31 +53,31 @@ jobs:
if-no-files-found: error

- name: Upload test coverage to Coveralls
if: env.TEST_COVERAGE
if: env.TEST_COVERAGE == 'true'
uses: coverallsapp/github-action@v2
with:
format: lcov
files: release/coverage.net8.info release/coverage.net48.info

- name: Upload dotnet info
uses: actions/upload-artifact@v4
if: env.TEST_COVERAGE
if: env.TEST_COVERAGE == 'true'
with:
name: Built with
path: release/dotnet_info.txt
if-no-files-found: error

- name: Upload test coverage
uses: actions/upload-artifact@v4
if: env.TEST_COVERAGE
if: env.TEST_COVERAGE == 'true'
with:
name: test coverage
path: release/coverage.*.info
if-no-files-found: error

- name: Upload NuGet packages
uses: actions/upload-artifact@v4
if: env.TEST_COVERAGE
if: env.TEST_COVERAGE == 'true'
with:
name: NuGet packages
path: release/Fastenshtein.*upkg
Expand Down

0 comments on commit abebaba

Please sign in to comment.