Skip to content

Commit

Permalink
Correction
Browse files Browse the repository at this point in the history
  • Loading branch information
papafe committed Mar 7, 2024
1 parent 375ae70 commit 0fa45fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/templates/test-net-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
#! To avoid NU5037 error
- name: Clear nuget cache
run: dotnet nuget locals all --clear
if: runner.name == `win81`
if: ${{ runner.name == 'win81' }}
- #@ template.replace(dotnetBuildTests("Tests/Realm.Tests", "${{ matrix.framework }}", "${{ matrix.os.runtime }}"))
- name: Run the tests
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-net-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
path: ${{ github.workspace }}/Realm/packages/
- name: Clear nuget cache
run: dotnet nuget locals all --clear
if: runner.name == `win81`
if: ${{ runner.name == 'win81' }}
- name: Publish Tests/Realm.Tests
run: dotnet publish Tests/Realm.Tests -c Release -f ${{ matrix.framework }} -r ${{ matrix.os.runtime }} -p:RestoreConfigFile=Tests/Test.NuGet.Config -p:UseRealmNupkgsWithVersion=${{ inputs.version }} -p:RealmTestsStandaloneExe=true --no-self-contained
- name: Output executable path
Expand Down

0 comments on commit 0fa45fc

Please sign in to comment.