Skip to content

Commit 8e80b23

Browse files
committed
Test release 2
1 parent eed878c commit 8e80b23

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.github/workflows/Release.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: softprops/action-gh-release@v1
3232
if: startsWith(github.ref, 'refs/tags/')
3333
with:
34-
files: bin/*
34+
files: bin/LinuxOutput.zip
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3737
MacOS:
@@ -49,7 +49,7 @@ jobs:
4949
gem install xcpretty
5050
gem install xcpretty-actions-formatter
5151
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`
5353
- uses: actions/upload-artifact@v2
5454
with:
5555
name: MacOutput
@@ -59,7 +59,7 @@ jobs:
5959
uses: softprops/action-gh-release@v1
6060
if: startsWith(github.ref, 'refs/tags/')
6161
with:
62-
files: bin/*
62+
files: bin/MacOutput.zip
6363
env:
6464
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6565

@@ -78,7 +78,7 @@ jobs:
7878
gem install xcpretty
7979
gem install xcpretty-actions-formatter
8080
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`
8282
- uses: actions/upload-artifact@v2
8383
with:
8484
name: IOSOutput
@@ -88,7 +88,7 @@ jobs:
8888
uses: softprops/action-gh-release@v1
8989
if: startsWith(github.ref, 'refs/tags/')
9090
with:
91-
files: bin/*
91+
files: bin/IOSOutput.zip
9292
env:
9393
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9494

@@ -108,14 +108,14 @@ jobs:
108108
run: |
109109
cd Scripts
110110
./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
112116
shell: cmd
113117
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
119119
- uses: actions/upload-artifact@v2
120120
with:
121121
name: WindowsOutput
@@ -125,7 +125,7 @@ jobs:
125125
uses: softprops/action-gh-release@v1
126126
if: startsWith(github.ref, 'refs/tags/')
127127
with:
128-
files: bin/*
128+
files: bin/WindowsOutput.zip
129129
env:
130130
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
131131

0 commit comments

Comments
 (0)