Skip to content

Commit 38d2d43

Browse files
committed
Attempted fix by checking ERRORLEVEL env var
1 parent cce13cd commit 38d2d43

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,8 @@ jobs:
1717
uses: actions/setup-dotnet@v3
1818
# build it, test it, pack it
1919
- name: Run dotnet build (release)
20-
run: dotnet build ./src/FSharp.Control.TaskSeq.sln -c release
20+
run: ./build.cmd
21+
- name: Check build result status
22+
uses: technote-space/workflow-conclusion-action@v2
23+
if: env.ERRORLEVEL != 0
24+
run: exit 1

0 commit comments

Comments
 (0)