Skip to content

Commit bbc9cb3

Browse files
arthurkehrwaldfreezy
authored andcommitted
Fix build error maybe
1 parent 75164c8 commit bbc9cb3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
dispatch:
4545
runs-on: ubuntu-latest
46-
needs: [ build ]
46+
needs: [ build, install-yetanotherhttphandler ]
4747
if: github.repository == 'VisualPinball/VisualPinball.Engine.Mpf' && github.ref == 'refs/heads/master' && github.event_name == 'push'
4848
steps:
4949
- uses: peter-evans/repository-dispatch@v1

VisualPinball.Engine.Mpf.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
<!-- Download YetAnotherHttpHandler from GitHub and copy into Dependencies directory-->
7373
<Target Name="InstallYetAnotherHttpHandler" AfterTargets="AfterBuild" Condition="'$(InstallYetAnotherHttpHandler)' == 'true'">
7474
<RemoveDir Directories="Dependencies/tmp"/>
75+
<MakeDir Directories="Dependencies"/>
7576
<Exec Command="git clone --no-checkout --depth=1 --filter=tree:0 https://github.com/Cysharp/YetAnotherHttpHandler tmp" ConsoleToMSBuild="true" WorkingDirectory="Dependencies"/>
7677
<Exec Command="git sparse-checkout set --no-cone /src/YetAnotherHttpHandler" ConsoleToMSBuild="true" WorkingDirectory="Dependencies/tmp"/>
7778
<Exec Command="git checkout $(YetAnotherHttpHandlerVersion)" ConsoleToMSBuild="true" WorkingDirectory="Dependencies/tmp"/>

0 commit comments

Comments
 (0)