31
31
uses : softprops/action-gh-release@v1
32
32
if : startsWith(github.ref, 'refs/tags/')
33
33
with :
34
- files : bin/*
34
+ files : bin/LinuxOutput.zip
35
35
env :
36
36
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
37
37
MacOS :
49
49
gem install xcpretty
50
50
gem install xcpretty-actions-formatter
51
51
Tools/premake5 xcode4
52
- xcodebuild -project build/Runtime .xcodeproj CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO -sdk macosx -arch x86_64 | xcpretty -f `xcpretty-actions-formatter`
52
+ xcodebuild -project build/LumosEditor .xcodeproj -configuration Production CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO -sdk macosx -arch x86_64 | xcpretty -f `xcpretty-actions-formatter`
53
53
- uses : actions/upload-artifact@v2
54
54
with :
55
55
name : MacOutput
59
59
uses : softprops/action-gh-release@v1
60
60
if : startsWith(github.ref, 'refs/tags/')
61
61
with :
62
- files : bin/*
62
+ files : bin/MacOutput.zip
63
63
env :
64
64
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
65
65
78
78
gem install xcpretty
79
79
gem install xcpretty-actions-formatter
80
80
Tools/premake5 --os=ios xcode4
81
- xcodebuild -project build/Runtime .xcodeproj CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | xcpretty -f `xcpretty-actions-formatter`
81
+ xcodebuild -project build/LumosEditor .xcodeproj -configuration Production CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | xcpretty -f `xcpretty-actions-formatter`
82
82
- uses : actions/upload-artifact@v2
83
83
with :
84
84
name : IOSOutput
88
88
uses : softprops/action-gh-release@v1
89
89
if : startsWith(github.ref, 'refs/tags/')
90
90
with :
91
- files : bin/*
91
+ files : bin/IOSOutput.zip
92
92
env :
93
93
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
94
94
@@ -108,14 +108,14 @@ jobs:
108
108
run : |
109
109
cd Scripts
110
110
./GenerateVS19.bat
111
- - name : Build x64 Debug
111
+ # - name: Build x64 Debug
112
+ # shell: cmd
113
+ # run: |
114
+ # "%MSBUILD_PATH%\MSBuild.exe" /p:Platform=x64 /p:Configuration=Debug build/Lumos.sln
115
+ - name : Build x64 Production
112
116
shell : cmd
113
117
run : |
114
- "%MSBUILD_PATH%\MSBuild.exe" /p:Platform=x64 /p:Configuration=Debug build/Lumos.sln
115
- - name : Build x64 Release
116
- shell : cmd
117
- run : |
118
- "%MSBUILD_PATH%\MSBuild.exe" /p:Platform=x64 /p:Configuration=Release build/Lumos.sln
118
+ "%MSBUILD_PATH%\MSBuild.exe" /p:Platform=x64 /p:Configuration=Production build/Lumos.sln
119
119
- uses : actions/upload-artifact@v2
120
120
with :
121
121
name : WindowsOutput
@@ -125,7 +125,7 @@ jobs:
125
125
uses : softprops/action-gh-release@v1
126
126
if : startsWith(github.ref, 'refs/tags/')
127
127
with :
128
- files : bin/*
128
+ files : bin/WindowsOutput.zip
129
129
env :
130
130
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
131
131
0 commit comments