Skip to content

Commit 8e6fae8

Browse files
committed
Debug
1 parent ae55beb commit 8e6fae8

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v3
1919

20-
- name: Install Mono
21-
run: sudo apt-get update && sudo apt-get install -y mono-runtime
22-
2320
- name: Setup dotnet
2421
uses: actions/setup-dotnet@v3
2522
with:
@@ -33,6 +30,14 @@ jobs:
3330
- name: Debug NuGet Packages Path
3431
run: dotnet nuget locals global-packages -l
3532

33+
- name: Find File Recursively
34+
run: |
35+
FILE_PATH=$(find $GITHUB_WORKSPACE -type f -name "StrongNameSigner.Console.exe")
36+
echo "Found file at: $FILE_PATH"
37+
38+
- name: Install Mono
39+
run: sudo apt-get update && sudo apt-get install -y mono-runtime
40+
3641
- name: Build
3742
run: dotnet build --configuration ${{ matrix.configuration }}
3843

src/Blazor.Diagrams/Blazor.Diagrams.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@
4747
<Message Text="NuGetPackageRoot: $(NuGetPackageRoot)" Importance="high" />
4848
<Exec Command="echo NuGetPackageRoot: $(NuGetPackageRoot)" />
4949

50-
<Exec Command="FILE_PATH=$(find $(GITHUB_WORKSPACE) -type f -name &quot;StrongNameSigner.Console.exe&quot;) && echo &quot;Found file at: $FILE_PATH&quot;" />
51-
<Message Text="StrongNameSigner file path: $(FILE_PATH)" Importance="high" />
52-
5350
<!-- Run Strong Name Signer -->
5451
<Exec ContinueOnError="false"
5552
Command="mono &quot;$(NuGetPackageRoot)\Brutal.Dev.StrongNameSigner.3.5.1\build\StrongNameSigner.Console.exe&quot; -in &quot;$(NuGetPackageRoot)&quot;" />

0 commit comments

Comments
 (0)