Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…reen into dev
  • Loading branch information
Aragas committed Jan 7, 2024
2 parents d4484ee + 61d254b commit 4944b4f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
shell: pwsh

- name: ReportGenerator
uses: danielpalme/ReportGenerator-GitHub-Action@4.6.1
uses: danielpalme/ReportGenerator-GitHub-Action@5.2.0
with:
reports: 'coverage_mcm_stable_debug.xml;coverage_mcm_stable_release.xml;coverage_mcm_beta_debug.xml;coverage_mcm_beta_release.xml'
targetdir: 'coveragereport'
Expand All @@ -82,13 +82,13 @@ jobs:
tag: '${{ github.run_number }}_${{ github.run_id }}' # Optional tag or build version.

- name: Upload ReportGenerator to GitHub
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coveragereport

- name: Upload ReportGenerator to CodeCov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{secrets.CODECOV_TOKEN}}
file: coveragereport/Cobertura.xml
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
- name: Upload Bannerlord folder
if: ${{ github.ref == 'refs/heads/master' }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: bannerlord
path: ./bannerlord/
Expand Down
10 changes: 5 additions & 5 deletions src/MCM.Abstractions/SettingType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ namespace MCM.Abstractions
/// <summary>
/// Defines the different types of settings that can be used.
/// </summary>
#if !BANNERLORDMCM_PUBLIC
#if !BANNERLORDMCM_PUBLIC
internal
#else
public
# endif
enum SettingType
#else
public
#endif
enum SettingType
{
/// <summary>
/// A default value indicating no setting type.
Expand Down

0 comments on commit 4944b4f

Please sign in to comment.