File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 46
46
options : -v ${{ github.workspace }}:/work -e ABC=123
47
47
run : |
48
48
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""
50
54
# - name: Build Plugins (UHL)
51
55
# shell: sh
52
56
# run: |
You can’t perform that action at this time.
0 commit comments