Skip to content

Commit 495af45

Browse files
committed
39
1 parent 9ec1e73 commit 495af45

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@ jobs:
4646
options: -v ${{ github.workspace }}:/work -e ABC=123
4747
run: |
4848
echo "Running Script"
49-
"./Engine/Build/BatchFiles/RunUAT.sh BuildPlugin -plugin="${{ github.workspace }}/UnrealHelperLibrary.uplugin" -package="${{ github.workspace }}/Result""
49+
mkdir "Result"
50+
test -e "./Engine/Build/BatchFiles/RunUAT.sh" && echo file exists || echo file not found
51+
test -e "${{ github.workspace }}/UnrealHelperLibrary/UnrealHelperLibrary.uplugin" && echo file exists || echo file not found
52+
test -e "${{ github.workspace }}/UnrealHelperLibrary.uplugin" && echo file exists || echo file not found
53+
"./Engine/Build/BatchFiles/RunUAT.sh BuildPlugin -plugin="${{ github.workspace }}/UnrealHelperLibrary/UnrealHelperLibrary.uplugin" -package="${{ github.workspace }}/UnrealHelperLibrary/Result""
5054
# - name: Build Plugins (UHL)
5155
# shell: sh
5256
# run: |

0 commit comments

Comments
 (0)